1.删除文件接口权限验证

busUser
x_z 3 years ago
parent 57664bdecd
commit ef70af1a86

@ -1,6 +1,5 @@
package com.glxp.sale.admin.upload;
import com.glxp.sale.admin.annotation.AuthRuleAnnotation;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
@ -19,7 +18,6 @@ public class ImageController {
@Value("${file_path}")
private String filePath;
@AuthRuleAnnotation("")
@GetMapping(value = "/udiwms/image/register/file/getImage")
public void getImage(HttpServletResponse response
, @RequestParam String type
@ -45,7 +43,6 @@ public class ImageController {
}
}
@AuthRuleAnnotation("")
@GetMapping(value = "/udiwms/donwload/file")
public void download(HttpServletResponse response,
@RequestParam String fileName) throws IOException {
@ -69,7 +66,6 @@ public class ImageController {
}
}
@AuthRuleAnnotation("")
@GetMapping(value = "/spms/donwload/pdf")
public void downloadPdf(HttpServletResponse response,
@RequestParam String fileName) throws IOException {

Loading…
Cancel
Save