zjh
2025-03-20 e191ab24286eb091db9966c9227c68d1af717b46
ltkj-admin/src/main/java/com/ltkj/web/controller/system/TjXdPictureController.java
@@ -81,14 +81,17 @@
            for (Map.Entry<String, List<TjXdPicture>> entry : stringListMap.entrySet()) {
                Map<String,Object>map=new HashMap<>();
                TjCustomer customer = customerService.getById(entry.getKey());
                customer.setCusName(MatchUtils.hideCusName(customer.getCusName()));
                customer.setCusPhone(MatchUtils.hidePhoneNum(customer.getCusPhone()));
                customer.setCusIdcard(MatchUtils.hideIdCardNum(customer.getCusIdcard()));
                customer.setTjNumber(entry.getValue().get(0).getTjNum());
                map.put("list",entry.getValue());
                map.put("customer",customer);
                map.put("picturePath",configService.selectConfigByKey("TjXdPicture"));
                arrayList.add(map);
                if(null !=customer){
                    customer.setCusName(MatchUtils.hideCusName(customer.getCusName()));
                    customer.setCusPhone(MatchUtils.hidePhoneNum(customer.getCusPhone()));
                    customer.setCusIdcard(MatchUtils.hideIdCardNum(customer.getCusIdcard()));
                    customer.setTjNumber(entry.getValue().get(0).getTjNum());
                    map.put("list",entry.getValue());
                    map.put("customer",customer);
                    map.put("picturePath",configService.selectConfigByKey("TjXdPicture"));
                    arrayList.add(map);
                }
            }
        }
        List<Map<String, Object>> collect =null;