ComplianceServer/oldcode/Model/Entity/RES_SHAREDPOOL_ONE.cs

18 lines
465 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.RES_SHAREDPOOL_ONE")]
public class RES_SHAREDPOOL_ONE
{
[Key]
public decimal PKID { get; set; }
public string RESID { get; set; }
public decimal SALESID { get; set; }
public decimal EID { get; set; }
public DateTime CTIME { get; set; }
}
}