39 lines
914 B
C#
39 lines
914 B
C#
using System.ComponentModel.DataAnnotations;
|
|
namespace DOAN.Model.MES.quality.FQC.Dto
|
|
{
|
|
/// <summary>
|
|
/// 终检结果详情查询对象
|
|
/// </summary>
|
|
public class QcFinalInspectionResultQueryDto : PagerInfo
|
|
{
|
|
public string Workorder { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 终检结果详情输入输出对象
|
|
/// </summary>
|
|
public class QcFinalInspectionResultDto
|
|
{
|
|
[Required(ErrorMessage = "Id不能为空")]
|
|
public int Id { get; set; }
|
|
|
|
public string Workorder { get; set; }
|
|
|
|
public string Direction { get; set; }
|
|
|
|
public int? QualifiedQuantity { get; set; }
|
|
|
|
public int? UnqualifiedQuantiy { get; set; }
|
|
|
|
public string CreatedBy { get; set; }
|
|
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
public string UpdatedBy { get; set; }
|
|
|
|
public DateTime? UpdatedTime { get; set; }
|
|
|
|
|
|
|
|
}
|
|
} |