Li Yuan 1 rok temu
rodzic
commit
2a8f5ff47c

+ 2 - 2
ibps-comp-base-root/modules/comp-file-server-api/src/main/java/com/lc/ibps/file/server/api/IUploadService.java

@@ -50,7 +50,7 @@ public interface IUploadService {
 			@NotNull(message = "{com.lc.ibps.cloud.file}")
 			@RequestPart(name = "file", required = true)MultipartFile file,@RequestParam(name = "ext", required = true)String ext);
 
-	@RequestMapping(value = "kettle", method = {RequestMethod.POST,RequestMethod.GET})
+	@RequestMapping(value = "kettle", method = {RequestMethod.POST})
 	public APIResult<AttachmentPo> uploadFileFromKettle(
 			@NotNull(message = "{com.lc.ibps.cloud.file}")
 			@RequestParam(name = "encString", required = true)String encString,
@@ -70,7 +70,7 @@ public interface IUploadService {
 
 	//devncq 流式细胞仪附件添加接口
 
-	@RequestMapping(value = "kettleBatchAdd", method = {RequestMethod.POST,RequestMethod.GET})
+	@RequestMapping(value = "kettleBatchAdd", method = {RequestMethod.POST})
 	public APIResult<AttachmentPo> kettleBatchAdd(
 			@NotNull(message = "{com.lc.ibps.cloud.file}")
 			@RequestParam(name = "encString", required = true)String encString,