20220923 焊接测试修改
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user