feat: 完善材料管理与焊接业务功能

This commit is contained in:
2026-08-06 15:33:11 +08:00
parent e418b60fdb
commit 1de898812e
49 changed files with 2566 additions and 555 deletions
+21
View File
@@ -32,6 +32,8 @@ namespace Model
public decimal? MatchNum { get; set; }
public decimal? MatchRate { get; set; }
public string MatchRateString { get; set; }
public decimal? ComponentMatchRate { get; set; }
public string ComponentMatchRateString { get; set; }
public int? PipeLineSortIndex { get; set; }
}
@@ -48,4 +50,23 @@ namespace Model
public decimal? MatchRate { get; set; }
public string MatchRateString { get; set; }
}
/// <summary>
/// 单位工程下部分已焊接组件的导出汇总。
/// </summary>
public class Tw_PartialWeldedComponentOutput
{
public string UnitWorkId { get; set; }
public string UnitWorkName { get; set; }
public string PipelineId { get; set; }
public string PipelineCode { get; set; }
public string PrefabricatedComponents { get; set; }
public string PipeArea { get; set; }
public string PipeAreaText { get; set; }
public int TotalWeldJointCount { get; set; }
public int WeldedWeldJointCount { get; set; }
public int UnweldedWeldJointCount { get; set; }
public decimal? ComponentMatchRate { get; set; }
public string ComponentMatchRateString { get; set; }
}
}