后道工单添加打印信息查看,补打标签,打印零头标签功能,配置文件更新

This commit is contained in:
2025-06-09 16:32:27 +08:00
parent d111c8c2c0
commit 7b546e5979
6 changed files with 254 additions and 28 deletions

View File

@@ -134,4 +134,17 @@ namespace ZR.Model.Dto
public DateTime? UpdatedTime { get; set; }
}
public class QcBackEndWorkorderPrintLabelDetailDto
{
// 已扫零件数
public int? ScannedPartCount { get; set; }
// 已扫箱标签数
public int? ScannedBoxLabelCount { get; set; }
// 补打数
public int? RePrintCount { get; set; }
// 零头箱打印数
public int? RemainderBoxPrintCount { get; set; }
// 箱标签当前序号
public int? CurrentBoxLabelSequence { get; set; }
}
}