文书送达送达人联系方式、送达地址数据加密解密测试

This commit is contained in:
songxudong 2025-10-17 17:50:06 +08:00
parent 2d18b64128
commit 82446036c5
1 changed files with 3 additions and 1 deletions

View File

@ -203,7 +203,6 @@ public class DeliveryRecordService {
} }
/** /**
* 根据ID删除文书送达记录信息 * 根据ID删除文书送达记录信息
* *
@ -250,6 +249,9 @@ public class DeliveryRecordService {
String code = com.aisino.iles.common.util.StringUtils.trimEven0(agencyCode) + "%"; String code = com.aisino.iles.common.util.StringUtils.trimEven0(agencyCode) + "%";
List<Agency> agencyList = agencyRepo.findLikeAgencyCode(code, agencyLevel).stream().filter(o -> !"01610100000000001".equals(o.getAgencyCode())).toList(); List<Agency> agencyList = agencyRepo.findLikeAgencyCode(code, agencyLevel).stream().filter(o -> !"01610100000000001".equals(o.getAgencyCode())).toList();
List<DeliveryRecordStatisticsDto> list = deliveryRecordRepo.statistics(code); List<DeliveryRecordStatisticsDto> list = deliveryRecordRepo.statistics(code);
Map<String, List<DeliveryRecordStatisticsDto>> listMap = list.stream().collect(Collectors.groupingBy(DeliveryRecordStatisticsDto::getAgencyCode));
Map<String, Map<String, Object>> mm = new HashMap<>();
Set<String> map = categories();
listMap.forEach((key, val) -> { listMap.forEach((key, val) -> {
Map<String, Object> resMap = new HashMap<>(); Map<String, Object> resMap = new HashMap<>();
map.forEach(k -> { map.forEach(k -> {