using System; using System.ComponentModel.DataAnnotations.Schema; using Znyc.Recruitment.Admin.Commons.Entitys; namespace Znyc.Recruitment.Admin.Security.Entitys { /// /// 审核记录表 /// [Table("rm_audit")] [Serializable] public class AuditEntity : BaseEntity { /// /// 默认构造函数(需要初始化属性的在此处理) /// public AuditEntity() { CreatedTime = DateTime.Now; ModifiedTime = DateTime.Now; } /// /// 产品ID /// public long ProductId { get; set; } /// /// 产品类型 /// public long ProductType { get; set; } /// /// 产品标题 /// public string ProductTitle { get; set; } /// /// 审核人 /// public long AuditUserId { get; set; } /// /// 审核状态 /// /// public int HandleStatus { get; set; } /// /// 审核结果 /// public string Note { get; set; } } }