This commit is contained in:
2026-08-12 20:18:47 +08:00
parent e418b60fdb
commit 0ba761bc7a
12 changed files with 1135 additions and 167 deletions
@@ -100,6 +100,20 @@
return list;
}
/// <summary>
/// 按类型获取探伤类型项
/// </summary>
/// <param name="DetectionTypeType"></param>
/// <returns></returns>
public static List<Model.Base_DetectionType> GetDetectionTypeListByDetectionTypeType2(string[] strs)
{
var list = (from x in Funs.DB.Base_DetectionType
where strs.Contains(x.DetectionTypeCode) && !x.DetectionTypeCode.Contains("/")
orderby x.DetectionTypeCode
select x).ToList();
return list;
}
#region
/// <summary>
/// 探伤类型下拉项