文书送达送达人联系方式、送达地址数据加密解密测试
This commit is contained in:
parent
2d18b64128
commit
82446036c5
|
|
@ -203,7 +203,6 @@ public class DeliveryRecordService {
|
|||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 根据ID删除文书送达记录信息
|
||||
*
|
||||
|
|
@ -250,6 +249,9 @@ public class DeliveryRecordService {
|
|||
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<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) -> {
|
||||
Map<String, Object> resMap = new HashMap<>();
|
||||
map.forEach(k -> {
|
||||
|
|
|
|||
Loading…
Reference in New Issue