材料管理修改(打印修改,出库单已审核已完成不计算匹配率)材料匹配修改,焊接任务单修改

This commit is contained in:
2024-12-06 22:17:50 +08:00
parent 77fbdb946d
commit f4f7f93835
24 changed files with 850 additions and 323 deletions
+15
View File
@@ -6,6 +6,8 @@ using System.Threading.Tasks;
namespace Model
{
[Serializable]
public class Tw_PipeMatMatchOutput
{
public string Id { get; set; }
@@ -24,4 +26,17 @@ namespace Model
public decimal? MatchRate { get; set; }
public string MatchRateString { get; set; }
}
public class Tw_PipeMatchOutput
{
public string Id { get; set; }
public string PipelineId { get; set; }
public string PipelineCode { get; set; }
public string UnitWorkId { get; set; }
public string UnitWorkName { get; set; }
public string PrefabricatedComponents { get; set; }
public decimal? SumNeedNum { get; set; }
public decimal? SumMatchNum { get; set; }
public decimal? MatchRate { get; set; }
public string MatchRateString { get; set; }
}
}