feat: 完善焊接质量检查和材料管理

补齐焊前专项审核和焊缝外观检测流程,统一质检查询、附件处理与材料明细导出,提升业务数据追溯和组件匹配使用效率。
This commit is contained in:
2026-08-10 17:58:55 +08:00
parent bd73295ff8
commit 2de696fad2
48 changed files with 2252 additions and 131 deletions
+7 -1
View File
@@ -52,7 +52,7 @@ namespace Model
}
/// <summary>
/// 单位工程下部分已焊接组件导出汇总。
/// 单位工程下组件导出汇总。
/// </summary>
public class Tw_PartialWeldedComponentOutput
{
@@ -66,6 +66,12 @@ namespace Model
public int TotalWeldJointCount { get; set; }
public int WeldedWeldJointCount { get; set; }
public int UnweldedWeldJointCount { get; set; }
/// <summary>未焊焊口的达因量。</summary>
public decimal? UnweldedDin { get; set; }
/// <summary>组件材料编码,多个编码使用换行分隔。</summary>
public string MaterialCode { get; set; }
/// <summary>与材料编码按顺序对应的组件材料数量。</summary>
public string MaterialQuantity { get; set; }
public decimal? ComponentMatchRate { get; set; }
public string ComponentMatchRateString { get; set; }
}