设备管理

This commit is contained in:
quowingwang
2025-12-13 14:06:58 +08:00
parent 069498dbe4
commit 0bf0e4d0b6
9 changed files with 3 additions and 3 deletions

View File

@@ -33,7 +33,7 @@ namespace ZR.Service.MES.dev
.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.Status != null, it => it.Status == parm.Status);
.AndIF((parm.Status != null && parm.Status >= 0), it => it.Status == parm.Status);
var response = Queryable()
.Where(predicate.ToExpression())
.ToPage<DeviceRouteInspectionPlan, DeviceRouteInspectionPlanDto>(parm);