2022-10-10 焊接材料编码库导入修改及其相关联界面修改。小程序包装信息接口添加。合同劳务人员下拉框

This commit is contained in:
2022-10-10 09:56:40 +08:00
parent c1a7f0aa14
commit 00aeaac1e2
18 changed files with 260 additions and 32 deletions
+43
View File
@@ -0,0 +1,43 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class HJGLIndexItem
{
/// <summary>
/// 工厂焊接一次合格率
/// </summary>
public string GCFirstPassRate { get; set; }
/// <summary>
/// 现场焊接一次合格率
/// </summary>
public string XCFirstPassRate { get; set; }
/// <summary>
/// 工厂预制进度
/// </summary>
public string GCProgress { get; set; }
/// <summary>
/// 现场预制进度
/// </summary>
public string XCProgress { get; set; }
/// <summary>
/// 工厂焊工功效
/// </summary>
public string GCWelderEfficacy { get; set; }
/// <summary>
/// 现场焊工功效
/// </summary>
public string XCWelderEfficacy { get; set; }
/// <summary>
/// 管道实时预制率
/// </summary>
public string PipePrefabricationRate { get; set; }
}
}