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.

42 lines
1.6 KiB

using FreeSql.DataAnnotations;
namespace Znyc.CloudCar.Model.Entities
{
/// <summary>
/// 审核记录表
/// </summary>
[Table(Name = "audit")]
public class AuditEntity : EntityBase
{
/// <summary>
/// 设备ID
/// </summary>
public long EquipmentId { get; set; }
/// <summary>
/// 产品标题
/// </summary>
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“ProductTitle”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
public string EquipmentTitle { get; set; }
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“ProductTitle”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
/// <summary>
/// 审核人
/// </summary>
public long AuditUserId { get; set; }
/// <summary>
/// 审核状态0-未通过/1-已通过
/// </summary>
/// <value></value>
public int HandleStatus { get; set; }
/// <summary>
/// 审核结果
/// </summary>
[Column(StringLength = 150)]
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“Note”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
public string Note { get; set; }
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“Note”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
}
}