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 Query(PointQueryRequest reqData) { using (var ctx = SysDbCore.GetDbCtx()) { var points = ctx.Queryable().Where(c => c.F_type == reqData.PointType && c.F_isDelete == 0).Select().ToList(); return points; } } } }