123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using WMS.Core._02Entity;
- using WMS.Info;
- using WMS.Info.Models;
- namespace WMS.Core.APPBLL
- {
- public class PointBll : AppCoreBLL
- {
- public List<BASE_POINT> Query(PointQueryRequest reqData)
- {
- using (var ctx = SysDbCore.GetDbCtx())
- {
- var points = ctx.Queryable<BASE_POINT>().Where(c => c.F_type == reqData.PointType && c.F_isDelete == 0).Select<BASE_POINT>().ToList();
- return points;
- }
- }
- }
- }
|