Commit bb047bf3 by zhangxingmin

地址列表

parent acb35b8d
...@@ -196,6 +196,8 @@ public class ApiAppointmentFileServiceImpl implements ApiAppointmentFileService ...@@ -196,6 +196,8 @@ public class ApiAppointmentFileServiceImpl implements ApiAppointmentFileService
public Result<ApiAppointmentExportExcelResponse> appointmentExportExcel(String appointmentBizId) { public Result<ApiAppointmentExportExcelResponse> appointmentExportExcel(String appointmentBizId) {
Map<String, Object> data = new HashMap<>(); Map<String, Object> data = new HashMap<>();
try { try {
//查询redis缓存的字典列表信息
// redisUtil.getCacheList()
//预约信息 //预约信息
Result<Appointment> result = apiAppointmentService.checkAppointmentIsExist(appointmentBizId); Result<Appointment> result = apiAppointmentService.checkAppointmentIsExist(appointmentBizId);
Appointment appointment = result.getData(); Appointment appointment = result.getData();
......
...@@ -54,6 +54,8 @@ public class ApiBeneficiaryServiceImpl implements ApiBeneficiaryService { ...@@ -54,6 +54,8 @@ public class ApiBeneficiaryServiceImpl implements ApiBeneficiaryService {
dtoList = list.stream().map(dto -> { dtoList = list.stream().map(dto -> {
ApiBeneficiaryInfoDto infoDto = new ApiBeneficiaryInfoDto(); ApiBeneficiaryInfoDto infoDto = new ApiBeneficiaryInfoDto();
BeanUtils.copyProperties(dto,infoDto); BeanUtils.copyProperties(dto,infoDto);
//地址列表
infoDto.setAddressList(CommonUtil.getAddressList(dto.getAddressList()));
return infoDto; return infoDto;
}).collect(Collectors.toList()); }).collect(Collectors.toList());
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment