fix: 固定载具类型

This commit is contained in:
2024-08-03 14:47:02 +08:00
parent 4197a09c8b
commit 59dd4392d5

View File

@@ -110,7 +110,7 @@ public class KJSKTask extends AbstractTask {
.and(la -> la.isNull(SchBasePoint::getIng_task_code) // 当前执行的任务为空或者NULL有数据表示锁住
.or()
.eq(SchBasePoint::getIng_task_code, ""))
.eq(SchBasePoint::getCan_vehicle_type, device.getVehicle_type())
.eq(SchBasePoint::getCan_vehicle_type, device.getCan_vehicle_type())
.eq(SchBasePoint::getIs_used, true)
.eq(SchBasePoint::getPoint_status, PointStatusEnum.EMPTY_POINT.getCode())
.eq(SchBasePoint::getPoint_type, PointTypeConstant.ENTRANCE));