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

17 lines
410 B
C#

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