2025-11-11 09:50:52 +08:00

42 lines
1017 B
C#

namespace RIZO.Model.Mes.Dto.MasterData
{
/// <summary>
/// 质量不良原因字典表查询对象
/// </summary>
public class QualityDefectReasonQueryDto : PagerInfo
{
public string ReasonName { get; set; }
public string Description { get; set; }
}
/// <summary>
/// 质量不良原因字典表输入输出对象
/// </summary>
public class QualityDefectReasonDto
{
[Required(ErrorMessage = "主键ID不能为空")]
public long Id { get; set; }
public string ReasonCode { get; set; }
public string ReasonName { get; set; }
public string ReasonType { get; set; }
public string Description { get; set; }
public string CreateBy { get; set; }
public string CreateName { get; set; }
public DateTime? CreateTime { get; set; }
public string UpdateName { get; set; }
public string UpdateBy { get; set; }
public DateTime? UpdateTime { get; set; }
}
}