feat: 添加报废记录功能及相关字段扩展

- 新增报废记录表及相关服务、控制器
- 扩展工单报表DTO,增加炉号、领料批次等字段
- 修改报表查询服务,关联工单表获取更多信息
- 在物料入库DTO中添加工单号字段
- 新增IQC文件夹结构
This commit is contained in:
2026-01-22 17:25:17 +08:00
parent 908f2604e9
commit 3d5ad78fad
11 changed files with 630 additions and 73 deletions

View File

@@ -25,7 +25,18 @@ namespace DOAN.Model.BZFM.Dto
[Required(ErrorMessage = "雪花不能为空")]
public string Id { get; set; }
// 炉号
public string StoveCode { get; set; }
public string Workorder { get; set; }
// 产成品号
public string ProductionName { get; set; }
public string ProductionCode { get; set; }
// 原材料号
public string MaterialCode { get; set; }
public string MaterialName { get; set; }
// 领料批次号
public string FeedOrder { get; set; }
public string RouteId { get; set; }