1
This commit is contained in:
@@ -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>
|
||||
/// 探伤类型下拉项
|
||||
|
||||
Reference in New Issue
Block a user