|
@@ -33,7 +33,9 @@ public class FinalReportService {
|
|
FinalReport report = finalReportDao.findOne(reportId);
|
|
FinalReport report = finalReportDao.findOne(reportId);
|
|
dto.setCreateTime(report.getCreateTime());
|
|
dto.setCreateTime(report.getCreateTime());
|
|
BeanUtils.copyProperties(dto, report);
|
|
BeanUtils.copyProperties(dto, report);
|
|
|
|
+ report.setImgUrls(String.join(",", dto.getImgUrls()));
|
|
finalReportDao.save(report);
|
|
finalReportDao.save(report);
|
|
|
|
+
|
|
return dto;
|
|
return dto;
|
|
}
|
|
}
|
|
|
|
|