2023-10-27

This commit is contained in:
2023-10-27 09:00:21 +08:00
parent 81d0edb9e7
commit bf856b7ab7
12 changed files with 155 additions and 30 deletions
@@ -506,5 +506,17 @@ namespace BLL
}
return Convert.ToDouble(size) * n;
}
public static string GetWPQCodeByWeldJointId(object WeldJointId)
{
string result = "";
if (WeldJointId != null)
{
var model = GetViewWeldJointById(WeldJointId.ToString());
result = model?.WPQCode;
}
return result;
}
}
}