75 lines
2.0 KiB
C#
75 lines
2.0 KiB
C#
namespace RIZO.Model.Mes.MasterData
|
|
{
|
|
/// <summary>
|
|
/// 质量不良原因字典表
|
|
/// </summary>
|
|
[SugarTable("quality_defect_reason")]
|
|
public class QualityDefectReason
|
|
{
|
|
/// <summary>
|
|
/// 主键ID
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 原因编码
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "reason_code")]
|
|
public string ReasonCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 原因类型
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "reason_name")]
|
|
public string ReasonName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 原因类型 Code
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "reason_type")]
|
|
public string ReasonType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 原因名称
|
|
/// </summary>
|
|
public string Description { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建人
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "create_by")]
|
|
public string CreateBy { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建人名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "create_name")]
|
|
public string CreateName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "create_time")]
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新人名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "update_name")]
|
|
public string UpdateName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新人
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "update_by")]
|
|
public string UpdateBy { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "update_time")]
|
|
public DateTime? UpdateTime { get; set; }
|
|
|
|
}
|
|
} |