using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace CRM.Core.Model.Entity { public class CMS_News_Log { [Key] public int id { get; set; } public int newid { get; set; } public string NewsType { get; set; } public string Title { get; set; } public string Content { get; set; } public int Status { get; set; } public int 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 decimal? Channel { get; set; } public int? Reason { get; set; } [NotMapped] public string ReasonStr { get; set; } public string UploadName { get; set; } /// /// 作者 /// public string Author { get; set; } /// /// 渠道 /// public string Channels { get; set; } /// /// 附件 /// public string Attachment { get; set; } } }