成品检验
This commit is contained in:
47
DOAN.Model/MES/Quality/IQC/Dto/QcDefectConfigDto.cs
Normal file
47
DOAN.Model/MES/Quality/IQC/Dto/QcDefectConfigDto.cs
Normal file
@@ -0,0 +1,47 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace DOAN.Model.MES.quality.IQC.Dto
|
||||
{
|
||||
/// <summary>
|
||||
/// 缺陷类别查询对象
|
||||
/// </summary>
|
||||
public class QcDefectConfigQueryDto : PagerInfo
|
||||
{
|
||||
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; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user