using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace WX.CRM.Model.Entity { /// /// 高级客服功能 /// [Table("UPDEV.WX_AFTERSALES3_LOG")] public class WX_AFTERSALES3_LOG { [Key] public decimal PKID { get; set; } public string RESID { get; set; } public decimal INNERUSERID { get; set; } public decimal? OLD_INNERUSERID { get; set; } public DateTime STARTDATE { get; set; } public DateTime ENDDATE { get; set; } public decimal? OPERATORID { get; set; } public DateTime CTIME { get; set; } } }