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.

50 lines
1.2 KiB

using System;
using System.ComponentModel.DataAnnotations.Schema;
using Znyc.Cloudcar.Admin.Commons.Entitys;
namespace Znyc.Cloudcar.Admin.Security.Entitys
{
/// <summary>
/// 审核记录表
/// </summary>
[Table("audit")]
[Serializable]
public class AuditEntity : BaseEntity
{
/// <summary>
/// 默认构造函数(需要初始化属性的在此处理)
/// </summary>
public AuditEntity()
{
CreatedTime = DateTime.Now;
ModifiedTime = DateTime.Now;
}
/// <summary>
/// 产品ID
/// </summary>
public long EquipmentId { get; set; }
/// <summary>
/// 产品标题
/// </summary>
public string EquipmentTitle { 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; }
}
}