|
|
@@ -101,7 +101,9 @@ public class ParkingChangeStrategyService {
|
|
|
return;
|
|
|
}
|
|
|
Set<Long> strategyIds = addMatchedIds(param.getEntName());
|
|
|
- if (CollectionUtils.isNotEmpty(strategyIds)) {
|
|
|
+ if (CollectionUtils.isEmpty(strategyIds)) {
|
|
|
+ wrapper.eq(KwtParkingChargeStrategy::getId, -1);
|
|
|
+ } else {
|
|
|
wrapper.in(KwtParkingChargeStrategy::getId, strategyIds);
|
|
|
}
|
|
|
}
|