|
@@ -39,12 +39,13 @@ public interface CdssClient {
|
|
|
|
|
|
/**
|
|
|
* 预匹配导入术语校验
|
|
|
+ *
|
|
|
* @param file
|
|
|
* @param type
|
|
|
*/
|
|
|
@PostMapping(value = "/tran/mappingConfig/dataVerify", consumes = MediaType.MULTIPART_FORM_DATA_VALUE)
|
|
|
RespDTO<Boolean> dataVerify(@RequestPart("file") MultipartFile file,
|
|
|
- @RequestParam("type") Integer type);
|
|
|
+ @RequestParam("type") Integer type);
|
|
|
|
|
|
/**
|
|
|
* 预匹配
|
|
@@ -77,11 +78,11 @@ public interface CdssClient {
|
|
|
* @param type
|
|
|
* @param userId
|
|
|
*/
|
|
|
- @PostMapping(value ="/tran/mappingConfig/importExcel", consumes = MediaType.MULTIPART_FORM_DATA_VALUE)
|
|
|
- void importExcel(@RequestPart("file") MultipartFile file,
|
|
|
- @RequestParam("hospitalId") Long hospitalId,
|
|
|
- @RequestParam("type") Integer type,
|
|
|
- @RequestParam("uesrId") String userId);
|
|
|
+ @PostMapping(value = "/tran/mappingConfig/importExcel", consumes = MediaType.MULTIPART_FORM_DATA_VALUE)
|
|
|
+ RespDTO<Boolean> importExcel(@RequestPart("file") MultipartFile file,
|
|
|
+ @RequestParam("hospitalId") Long hospitalId,
|
|
|
+ @RequestParam("type") Integer type,
|
|
|
+ @RequestParam("uesrId") String userId);
|
|
|
|
|
|
|
|
|
/**
|