no message

This commit is contained in:
cb 2025-11-26 08:58:22 +08:00
parent 4c801f007a
commit 477f252fd1
1 changed files with 3 additions and 1 deletions

View File

@ -127,8 +127,10 @@ public class WorkerAreaController extends BaseController {
} }
ids.add(String.valueOf(area.getStreetId())); ids.add(String.valueOf(area.getStreetId()));
if (area.getDistrictId()!=null){
countryMap.put(area.getDistrictId(), ids); countryMap.put(area.getDistrictId(), ids);
} }
}
List<WorkerArea> result = new ArrayList<>(); List<WorkerArea> result = new ArrayList<>();
for (Map.Entry<Long, List<String>> longListEntry : countryMap.entrySet()) { for (Map.Entry<Long, List<String>> longListEntry : countryMap.entrySet()) {