送达人、送达地址加密
This commit is contained in:
parent
77508ed6c8
commit
89ed8403ab
|
|
@ -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 -> {
|
||||
|
|
|
|||
Loading…
Reference in New Issue