|  |  | 
 |  |  |         //删除其他待办 | 
 |  |  |         noticesMapper.delete(new QueryWrapper<Notices>().lambda().eq(Notices::getObjType,noticeObjectType.getKey()).eq(Notices::getObjId,model.getId())); | 
 |  |  |  | 
 |  |  |         Notices notices = new Notices(noticeObjectType,Constants.ONE,model.getId(),model.getInformantName(), | 
 |  |  |                 model.getCompanyId(), Constants.NoticeType.FOUR); | 
 |  |  |         noticesMapper.insert(notices); | 
 |  |  |  | 
 |  |  |  | 
 |  |  |         Constants.SettleClaimsLogType applyLogType = Constants.SettleClaimsLogType.PLATFORM_RETURN; | 
 |  |  |         String info =applyLogType.getInfo(); | 
 |  |  |         info = info.replace("${param}", update.getCheckInfo()); | 
 |  |  | 
 |  |  |         update.setId(model.getId()); | 
 |  |  |         settleClaimsMapper.updateById(update); | 
 |  |  |  | 
 |  |  |         Constants.SettleClaimsLogType applyLogType = Constants.SettleClaimsLogType.PLATFORM_REMARK; | 
 |  |  |         String info =applyLogType.getInfo(); | 
 |  |  |         info = info.replace("${param}", param.getCheckInfo()); | 
 |  |  |         SettleClaimsLog log = new SettleClaimsLog(update,applyLogType.getName(), info,update.getId(),applyLogType.getKey(), JSONObject.toJSONString(model), JSONObject.toJSONString(update)); | 
 |  |  |         settleClaimsLogMapper.insert(log); | 
 |  |  | //        Constants.SettleClaimsLogType applyLogType = Constants.SettleClaimsLogType.PLATFORM_REMARK; | 
 |  |  | //        String info =applyLogType.getInfo(); | 
 |  |  | //        info = info.replace("${param}", param.getCheckInfo()); | 
 |  |  | //        SettleClaimsLog log = new SettleClaimsLog(update,applyLogType.getName(), info,update.getId(),applyLogType.getKey(), JSONObject.toJSONString(model), JSONObject.toJSONString(update)); | 
 |  |  | //        settleClaimsLogMapper.insert(log); | 
 |  |  |         return  1; | 
 |  |  |  | 
 |  |  |     } | 
 |  |  | 
 |  |  |                             Constants.MultiFile.LP_SCZL_FILE.getKey(), | 
 |  |  |                             Constants.MultiFile.LP_JACL_FILE.getKey(), | 
 |  |  |                     })) | 
 |  |  |                     .orderByAsc(Multifile::getCreateDate) | 
 |  |  |             ); | 
 |  |  |             if(multifileList== null || multifileList.size() == 0){ | 
 |  |  |                 throw  new BusinessException(ResponseStatus.DATA_EMPTY); | 
 |  |  |             } | 
 |  |  |             String path = systemDictDataBiz.queryByCode(Constants.OSS,Constants.RESOURCE_PATH).getCode()+systemDictDataBiz.queryByCode(Constants.OSS,Constants.SETTLE_FILE).getCode(); | 
 |  |  |             Integer sn = 1; | 
 |  |  |             for(Multifile l : multifileList){ | 
 |  |  |                 File f = Constants.getFileByNetFile(path + l.getFileurl(),StringUtils.defaultString(l.getName(),"未命名")); | 
 |  |  |                 File f = Constants.getFileByNetFile(path + l.getFileurl(),StringUtils.defaultString(sn + "_" +l.getName(),"未命名")); | 
 |  |  |                 if(f !=null && f.isFile()){ | 
 |  |  |                     fileList.add(f); | 
 |  |  |                 } | 
 |  |  |                 sn = sn +1; | 
 |  |  |             } | 
 |  |  |             if(fileList == null || fileList.size() == 0){ | 
 |  |  |                 throw  new BusinessException(ResponseStatus.DATA_EMPTY); |