ComplianceServer/oldcode/Core.Model/Entity/CMS_News_Log.cs

54 lines
1.6 KiB
C#

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; }
/// <summary>
/// 作者
/// </summary>
public string Author { get; set; }
/// <summary>
/// 渠道
/// </summary>
public string Channels { get; set; }
/// <summary>
/// 附件
/// </summary>
public string Attachment { get; set; }
}
}