设备管理BUG修复
This commit is contained in:
@@ -32,8 +32,8 @@ namespace ZR.Service.MES.dev
|
||||
.AndIF(parm.LifeCycleStart != null, it => it.LifeCycleStart >= parm.LifeCycleStart)
|
||||
.AndIF(parm.LifeCycleEnd != null, it => it.LifeCycleEnd <= parm.LifeCycleEnd)
|
||||
.AndIF(parm.ExcuteCycleType > 0, it => it.ExcuteCycleType == parm.ExcuteCycleType)
|
||||
.AndIF(parm.InnerType>-1, it => it.InnerType == parm.InnerType);
|
||||
|
||||
.AndIF(parm.InnerType>-1, it => it.InnerType == parm.InnerType)
|
||||
.AndIF(parm.Status != null, it => it.Status == parm.Status);
|
||||
var response = Queryable()
|
||||
.Where(predicate.ToExpression())
|
||||
.ToPage<DeviceRouteInspectionPlan, DeviceRouteInspectionPlanDto>(parm);
|
||||
|
||||
Reference in New Issue
Block a user