| | |
| | | |
| | | /** |
| | | * 导出业务类型 |
| | | * name 业务类型名称 |
| | | * oid 业务类型名称 |
| | | * @return 创建结果 |
| | | */ |
| | | @Override |
| | |
| | | String attrPath = attributeService.exportAttributes("btmattr", |
| | | attributes.stream().collect(Collectors.joining(",")),true); |
| | | //移动属性到链接类型文件夹里面去 |
| | | cn.hutool.core.io.FileUtil.move(new File(attrPath), new File(defaultTempFolder),true); |
| | | cn.hutool.core.io.FileUtil.del(attrPath.substring(0,attrPath.lastIndexOf("\\"))); |
| | | FileUtil.move(new File(attrPath), new File(defaultTempFolder),true); |
| | | FileUtil.del(attrPath.substring(0,attrPath.lastIndexOf("\\"))); |
| | | }catch (IOException e) { |
| | | throw new RuntimeException(e); |
| | | } |