修改查询服务指令接口

This commit is contained in:
yangjun 2025-10-10 11:22:48 +08:00
parent a984fff22a
commit 9b4ffdcde2
1 changed files with 3 additions and 1 deletions

View File

@ -50,7 +50,7 @@ public class NuBizNuCustomerServerServiceImpl extends ServiceImpl<NuBizNuCustome
for(NuBizNuCustomerServer par : groupList){
if(StringUtils.equals(groupPositioning1,par.getPositioning())){
Map<String,Object> map = new HashMap<>();
map.put("id",par.getId());
map.put("directiveId",par.getId());
map.put("directiveName",par.getDirectiveName());
map.put("categoryName",par.getCategoryName());
map.put("typeName",par.getTypeName());
@ -60,6 +60,8 @@ public class NuBizNuCustomerServerServiceImpl extends ServiceImpl<NuBizNuCustome
map.put("cycleType",par.getCycleType());
map.put("positioningLong",par.getPositioningLong());
map.put("positioning",par.getPositioning());
map.put("nuId",nuBizNuCustomerServer.getNuId());
map.put("customerId",nuBizNuCustomerServer.getCustomerId());
childrenList.add(map);
}
}