47 lines
1.0 KiB
C#
Raw Normal View History

2024-10-10 17:36:33 +08:00
using System.ComponentModel.DataAnnotations;
2024-10-12 16:30:09 +08:00
namespace DOAN.Model.MES.quality.IQC.Dto
2024-10-10 17:36:33 +08:00
{
/// <summary>
/// 缺陷类别查询对象
/// </summary>
2024-10-12 16:30:09 +08:00
public class QcDefectConfigQueryDto : PagerInfo
2024-10-10 17:36:33 +08:00
{
public string Name { get; set; }
public string Code { get; set; }
public string Group { get; set; }
public string QcType { get; set; }
public string Status { get; set; }
}
/// <summary>
/// 缺陷类别输入输出对象
/// </summary>
public class QcDefectConfigDto
{
[Required(ErrorMessage = "主键不能为空")]
public int Id { get; set; }
public string Name { get; set; }
public string Code { get; set; }
public string Group { get; set; }
public string QcType { get; set; }
public string Status { get; set; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
}
}