This commit is contained in:
2025-05-15 17:55:59 +08:00
parent fc68f88ca0
commit 3e6c4411b2
2 changed files with 153 additions and 37 deletions

View File

@@ -7,27 +7,55 @@ namespace ZR.Model.Dto
/// </summary>
public class QcBackEndPrintMqttEventDto
{
public string Path { get; set; }
// btw文件路径
public string Path { get; set; } = "";
public string SiteNo { get; set; }
// 站点号
public string SiteNo { get; set; } = "";
public string Name { get; set; }
// 识别内容名称(内部)
public string Name { get; set; } = "";
public string PartNumber { get; set; }
// 零件号
public string PartNumber { get; set; } = "";
public string WorkOrder { get; set; }
// 产品名称
public string Description { get; set; } = "";
// 颜色
public string Color { get; set; } = "";
// 规格
public string Specification { get; set; } = "";
// 工单号
public string WorkOrder { get; set; } = "";
// 箱号
public string PackageCode { get; set; } = "";
// 班组
public string Team { get; set; } = "A";
// 流水号
public int Sort { get; set; } = 1;
public string BatchCode { get; set; }
// 生产时间
public string ProductionTime { get; set; } = "";
// 批次号
public string BatchCode { get; set; } = "";
// 满箱数
public int PackageNum { get; set; } = 24;
// 标签内容
public string LabelCode { get; set; } = "";
// 标签区别
public int LabelType { get; set; } = 1;
// 发送时间
public string CreatedTime { get; set; } = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
}
}
}