feat(材料管理): 添加原材料工单号字段并优化工单查询

在入库、出库记录及相关DTO中添加WorkorderRaw字段用于记录原材料工单号
修改ProWorkorderService查询逻辑,增加PlanNum>0的条件过滤
This commit is contained in:
2026-01-26 19:10:02 +08:00
parent 722ef40fd2
commit 69da20ba42
5 changed files with 51 additions and 1 deletions

View File

@@ -104,5 +104,11 @@ namespace DOAN.Model.BZFM
/// </summary>
public string Workorder { get; set; }
/// <summary>
/// 原材料工单号
/// </summary>
[SugarColumn(ColumnName = "workorder_raw")]
public string WorkorderRaw { get; set; }
}
}