54 lines
1.2 KiB
C#
54 lines
1.2 KiB
C#
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; }
|
|
|
|
|
|
|
|
}
|
|
} |