mirror of
https://gitee.com/y_project/RuoYi-Cloud.git
synced 2026-01-29 04:51:58 +08:00
添加基本库存页面
This commit is contained in:
@@ -6,10 +6,7 @@ import com.ruoyi.system.api.domain.SysFileInfo;
|
||||
import com.ruoyi.system.api.factory.RemoteFileFallbackFactory;
|
||||
import org.springframework.cloud.openfeign.FeignClient;
|
||||
import org.springframework.http.MediaType;
|
||||
import org.springframework.web.bind.annotation.DeleteMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.RequestPart;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
import org.springframework.web.multipart.MultipartFile;
|
||||
|
||||
/**
|
||||
@@ -34,6 +31,6 @@ public interface RemoteFileService {
|
||||
* @param fileIds 文件id
|
||||
* @return 结果
|
||||
*/
|
||||
@DeleteMapping("/deleteFiles/{fileIds}")
|
||||
R<SysFileInfo> deleteFiles(@PathVariable String[] fileIds);
|
||||
@DeleteMapping("/deleteFiles")
|
||||
R<SysFileInfo> deleteFiles(@RequestParam("fileIds") String[] fileIds);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user