35 lines
1.1 KiB
C#
35 lines
1.1 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; }
|
|
}
|
|
}
|