namespace WX.CRM.Model.Entity { using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; [Table("UPDEV.WX_MESSAGECOMPLIANCE")] public partial class WX_MESSAGECOMPLIANCE { [Key] public decimal PKID { get; set; } [StringLength(50)] public string JOBUSERNAME { get; set; } [StringLength(50)] public string USERNAME { get; set; } public decimal? INNERUSERID { get; set; } public string MESSAGE { get; set; } public DateTime? CTIME { get; set; } public decimal? OPERATORID { get; set; } public decimal? MSGTYPE { get; set; } public decimal? MSGSOURCE { get; set; } [StringLength(128)] public string MSGSVRID { get; set; } [StringLength(4000)] public string MSGURL { get; set; } [StringLength(100)] public string BIGTYPE { get; set; } [StringLength(100)] public string SUBTYPE { get; set; } [StringLength(4000)] public string REMARK { get; set; } public decimal? TYPE { get; set; } public decimal? RECORDID { get; set; } public string SERVERID { get; set; } public string FILENAME { get; set; } public string RESID { get; set; } public DateTime? ORIGINALTIME { get; set; } public decimal? PENALTY { get; set; } [StringLength(2000)] public string RESULT { get; set; } /// /// 企业微信--用户ID /// public string HHUSERID { get; set; } /// /// 企业微信--企业号ID /// public string CORPID { get; set; } /// /// 企业微信--企业号名称 /// public string CORPNAME { get; set; } /// /// 企业微信--用户名称 /// public string HHUSERNAME { get; set; } /// /// 企业微信--客户ID /// public string EXTUSERID { get; set; } /// /// 企业微信--客户名称 /// public string EXTNAME { get; set; } } }