20220923 焊接测试修改

This commit is contained in:
2022-09-23 00:01:54 +08:00
parent 01ce3c0381
commit 337cbbebe6
18 changed files with 307 additions and 21 deletions
@@ -51,6 +51,31 @@ namespace BLL
).OrderByDescending(x => x.Version).FirstOrDefault();
return q;
}
public static string ConvertFileType(object ImportType)
{
string TypeName=string.Empty;
if (ImportType != null)
{
switch (ImportType.ToString ())
{
case "0":
TypeName = "ISO轴测图";
break;
case "1":
TypeName = "三维模型";
break;
case "2":
TypeName = "属性文件";
break;
case "3":
TypeName = "管道预制加工图";
break;
}
}
return TypeName;
}
public static List<decimal?> GetListVersionByUnitWorkId(string UnitWorkId)
{
//decimal a = 0.1M;