大标签追溯

This commit is contained in:
qianhao.xu
2024-05-20 13:43:40 +08:00
parent 93abada9b3
commit 808b225000
7 changed files with 366 additions and 1 deletions

View 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; }
}
}