style: 老法规数据导入代码整理

This commit is contained in:
2023-12-05 14:35:45 +08:00
parent bb71d2612d
commit 706757f14b
11 changed files with 1513 additions and 1543 deletions
@@ -19,60 +19,4 @@ public interface ILawsEnterpriseStandardService extends IService<LawsEnterpriseS
*/
LawsEnterpriseStandard queryByStandardNumber(String standardNumber);
/**
* 老法规系统Excel导入
*
* @param file
* @param response
* @return
*/
void importExcelOldSystem(MultipartFile file, String type, HttpServletResponse response);
/**
* 老法规企标所有人权限数据导入
*
* @param file
* @param response
* @return
*/
void importOldESAuthAllExcel(MultipartFile file, HttpServletResponse response);
/**
* 老法规企标个人权限数据导入
*
* @param file
* @param response
* @return
*/
void importOldESAuthUserExcel(MultipartFile file, HttpServletResponse response);
/**
* 老法规企标部门权限数据导入
*
* @param file
* @param response
* @return
*/
void importOldESAuthDeptExcel(MultipartFile file, HttpServletResponse response);
/**
* 过滤中文标准号
* @param file
* @param response
*/
void filterChineseStandardNo(MultipartFile file, HttpServletResponse response) throws IOException;
/**
* 导入文件关系Excel
* @param file
* @param response
*/
void importFileRelationExcel(MultipartFile file, HttpServletResponse response);
/**
* 找到标准号重复的数据
* @param file
* @param response
*/
void findDuplicateStandardNoData(MultipartFile file, HttpServletResponse response);
}