送达人、送达地址加密

This commit is contained in:
yuyan02 2025-10-11 16:40:24 +08:00
parent 77508ed6c8
commit 89ed8403ab
1 changed files with 13 additions and 3 deletions

View File

@ -202,6 +202,19 @@ public class DeliveryRecordService {
};
}
/**
* 根据ID删除文书送达记录信息
*
* @param deliveryRecordId 文书送达记录ID
*/
@Transactional
public void deleteDeliveryRecordById(String deliveryRecordId) {
deliveryRecordRepo.deleteById(deliveryRecordId);
}
/**
* 文书送达记录是否存在
*
* @param deliveryRecordId 文书送达记录ID
@ -237,9 +250,6 @@ 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 -> {