62 lines
1.7 KiB
C#
62 lines
1.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Entity
|
|
{
|
|
[Table("CMS_News_Log")]
|
|
public class CmsNewsLog
|
|
{
|
|
[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 CmsNewStatus 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 int? 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; }
|
|
|
|
/// <summary>
|
|
/// 上传人id
|
|
/// </summary>
|
|
public int? DepartmentId { get; set; }
|
|
}
|
|
}
|