2025-11-22 11:37:53 +08:00

52 lines
1.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
//下拉列表用
public class QualityDefectReasonPullDownDto()
{
// 对应前端的value建议用产线编码作为值
public string value { get; set; }
// 对应前端的label显示产线名称
public string label { get; set; }
}
}