后道触摸屏满箱提交

This commit is contained in:
2025-05-22 19:37:07 +08:00
parent 3f7b111949
commit 2f368ff35c
9 changed files with 662 additions and 145 deletions

View File

@@ -0,0 +1,54 @@
using System.ComponentModel.DataAnnotations;
namespace ZR.Model.Dto
{
/// <summary>
/// 后道标签打印记录查询对象
/// </summary>
public class QcBackendRecordLabelPrintQueryDto : PagerInfo
{
}
/// <summary>
/// 后道标签打印记录输入输出对象
/// </summary>
public class QcBackendRecordLabelPrintDto
{
[Required(ErrorMessage = "主键不能为空")]
public string Id { get; set; }
public string MachineCode { get; set; }
[Required(ErrorMessage = "标签编码不能为空")]
public string LabelCode { get; set; }
public string WorkOrder { get; set; }
public string PartNumber { get; set; }
public string Description { get; set; }
public string Team { get; set; }
public string BatchCode { get; set; }
public int? SerialNumber { get; set; }
public int? PartNum { get; set; }
public int? LabelType { get; set; }
public int? BoxMaxNum { get; set; }
public int? IsFull { get; set; }
public int? IsLcl { get; set; }
public string CreateBy { get; set; }
public DateTime? CreateTime { get; set; }
}
}