Files
shanghaigangxiangtuzhuangMES/ZR.Model/MES/pro/DTO/WmPackingrecordDto.cs
2024-07-03 17:14:14 +08:00

54 lines
1.2 KiB
C#

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 string PackingCode { 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; }
}
}