TG.WXCRM.V4/Model/Entity/RES_SENIORSHAREDPOOL_HIS.cs

19 lines
520 B
C#

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