| | |
| | | |
| | | void downloadById(HttpServletResponse response, HttpServletRequest request, Long id); |
| | | |
| | | void saveBatch(List<AttachmentInfo> attachmentInfo); |
| | | void updateBatchById(List<AttachmentInfo> attachmentInfo); |
| | | } |
| | |
| | | } |
| | | |
| | | @Override |
| | | public void saveBatch(List<AttachmentInfo> attachmentInfo) { |
| | | boolean saveBatch = attachmentInfoService.saveBatch(attachmentInfo); |
| | | public void updateBatchById(List<AttachmentInfo> attachmentInfo) { |
| | | boolean saveBatch = attachmentInfoService.updateBatchById(attachmentInfo); |
| | | if (!saveBatch) |
| | | throw new ServiceException("文件批量保存失败"); |
| | | } |