招聘后台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

54 lines
1.3 KiB

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