添加基本库存页面

This commit is contained in:
AlanScipio
2024-02-22 18:12:24 +08:00
parent 7b71fd28e4
commit 2366176f01
40 changed files with 2278 additions and 66 deletions

View File

@@ -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);
}