74 lines
1.7 KiB
C#
74 lines
1.7 KiB
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace ZR.Model.MES.wms.Dto
|
|
{
|
|
/// <summary>
|
|
/// 后道检验工单表查询对象
|
|
/// </summary>
|
|
public class WmPolishInspectionWorkorderQueryDto : PagerInfo
|
|
{
|
|
public string WorkorderNo { get; set; }
|
|
|
|
public string Partnumber { get; set; }
|
|
|
|
public string BlankNum { get; set; }
|
|
|
|
public List<DateTime?> OrderTimeList { get; set; }
|
|
|
|
public int? Type { get; set; }
|
|
|
|
public int? IsSend { get; set; }
|
|
|
|
public int? Status { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 后道检验工单表输入输出对象
|
|
/// </summary>
|
|
public class WmPolishInspectionWorkorderDto
|
|
{
|
|
[Required(ErrorMessage = "工单主键不能为空")]
|
|
public string Id { get; set; }
|
|
|
|
public string WorkorderNo { get; set; }
|
|
|
|
public string Partnumber { get; set; }
|
|
|
|
public string BlankNum { get; set; }
|
|
|
|
public int? Quantity { get; set; }
|
|
|
|
public int? PassNum { get; set; }
|
|
|
|
public int? PolishNum { get; set; }
|
|
|
|
public int? SandingNum { get; set; }
|
|
|
|
public int? DiscardNum { get; set; }
|
|
|
|
public DateTime? OrderTime { get; set; }
|
|
|
|
public DateTime? StartTime { get; set; }
|
|
|
|
public DateTime? EndTime { get; set; }
|
|
|
|
public int? Type { get; set; }
|
|
|
|
public string Remark { get; set; }
|
|
|
|
public int? IsSend { get; set; }
|
|
|
|
public int? Status { get; set; }
|
|
|
|
public string UpdatedBy { get; set; }
|
|
|
|
public DateTime? UpdatedTime { get; set; }
|
|
|
|
public string CreatedBy { get; set; }
|
|
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
|
|
|
|
}
|
|
} |