feat(IPQC): 完善报废和转用单处理流程

重构报废和转用单创建逻辑,使用DefectApproveDto作为参数
新增批次号、处理数量和操作人字段
实现不良品出库和报废/转用入库的完整流程
This commit is contained in:
2026-02-25 18:42:57 +08:00
parent 5011447292
commit dbe9dc9311
4 changed files with 208 additions and 33 deletions

View File

@@ -35,5 +35,17 @@ namespace DOAN.Model.BZFM.Dto
/// 工单号
/// </summary>
public string Workorder { get; set; }
/// <summary>
/// 处理批次号
/// </summary>
public string BatchNo { get; set; }
/// <summary>
/// 处理数量
/// </summary>
public decimal ScrapQuantity { get; set; }
/// <summary>
/// 操作人
/// </summary>
public string Operator { get; set; }
}
}