1
This commit is contained in:
@@ -935,5 +935,23 @@ namespace BLL
|
||||
return items;
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region 获取焊接位置
|
||||
/// <summary>
|
||||
/// 获取焊接位置
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public static List<Model.BaseInfoItem> GetWeldingLocationList()
|
||||
{
|
||||
using (Model.SGGLDB db = new Model.SGGLDB(Funs.ConnString))
|
||||
{
|
||||
var getDataLists = (from x in db.Base_WeldingLocation
|
||||
orderby x.WeldingLocationCode
|
||||
select new Model.BaseInfoItem { BaseInfoId = x.WeldingLocationId, BaseInfoCode = x.WeldingLocationCode, BaseInfoName = x.WeldingLocationName }).ToList();
|
||||
return getDataLists;
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user