62 lines
1.7 KiB
C#
62 lines
1.7 KiB
C#
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; }
|
|
|
|
/// <summary>
|
|
/// 作者
|
|
/// </summary>
|
|
public string AUTHOR { get; set; }
|
|
|
|
/// <summary>
|
|
/// 渠道
|
|
/// </summary>
|
|
public string CHANNELS { get; set; }
|
|
|
|
/// <summary>
|
|
/// 附件
|
|
/// </summary>
|
|
public string ATTACHMENT { get; set; }
|
|
|
|
[NotMapped]
|
|
public string DeptName { get; set; }
|
|
|
|
[NotMapped]
|
|
public string RejectedReason { get; set; }
|
|
}
|
|
}
|