using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace WX.CRM.Model.Entity { [Table("UPDEV.CMS_NEWS_LOG")] public class CMS_NEWS_LOG { [Key] public decimal ID { get; set; } public decimal NEWID { get; set; } public string NEWSTYPE { get; set; } public string TITLE { get; set; } public string CONTENT { get; set; } public decimal STATUS { get; set; } public decimal OPUSER { get; set; } public string OPNAME { get; set; } public DateTime CTIME { get; set; } public string ATT { get; set; } public string REMARK { get; set; } public string DEPTCODE { get; set; } public string OPEVENT { get; set; } public string CHECKREMARK { get; set; } public string AUDITIMG1 { get; set; } public string AUDITIMG2 { get; set; } public string AUDITIMG3 { get; set; } public string AUDITIMG4 { get; set; } public string AUDITIMG5 { get; set; } public string AUDITIMG6 { get; set; } public int? REASON { get; set; } public string UPLOADNAME { get; set; } [NotMapped] public string ReasonStr { get; set; } /// /// 作者 /// public string AUTHOR { get; set; } /// /// 渠道 /// public string CHANNELS { get; set; } /// /// 附件 /// public string ATTACHMENT { get; set; } [NotMapped] public string DeptName { get; set; } [NotMapped] public string RejectedReason { get; set; } } }