大标签追溯
This commit is contained in:
53
ZR.Model/MES/pro/DTO/WmPackingrecordDto.cs
Normal file
53
ZR.Model/MES/pro/DTO/WmPackingrecordDto.cs
Normal file
@@ -0,0 +1,53 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace ZR.Model.MES.pro.DTO
|
||||
{
|
||||
/// <summary>
|
||||
/// 包装记录查询对象
|
||||
/// </summary>
|
||||
public class WmPackingrecordQueryDto : PagerInfo
|
||||
{
|
||||
public string PartNum { get; set; }
|
||||
|
||||
public string Machine { get; set; }
|
||||
public string WorkOrderNum { get; set; }
|
||||
public DateTime? start_time { get; set; }
|
||||
public DateTime? end_time { get; set; }
|
||||
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 包装记录输入输出对象
|
||||
/// </summary>
|
||||
public class WmPackingrecordDto
|
||||
{
|
||||
public long Id { get; set; }
|
||||
|
||||
|
||||
public string PartNum { get; set; }
|
||||
|
||||
public string Machine { get; set; }
|
||||
|
||||
public string ProductCode { get; set; }
|
||||
|
||||
public string PackingCode { get; set; }
|
||||
|
||||
public string ScannerContent { get; set; }
|
||||
|
||||
public string WorkOrderNum { get; set; }
|
||||
|
||||
public string Standby3 { get; set; }
|
||||
|
||||
public string Standby4 { get; set; }
|
||||
|
||||
public string Standby5 { get; set; }
|
||||
|
||||
[Required(ErrorMessage = "指示是否满箱不能为空")]
|
||||
public bool BFilled { get; set; }
|
||||
|
||||
public DateTime? CreateTime { get; set; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user