Commit 1b1d2b0a by 陶光胜

图片base64上传

parent 118c52c8
...@@ -159,9 +159,9 @@ public class UploadImgController { ...@@ -159,9 +159,9 @@ public class UploadImgController {
@RequestMapping("/receiveData") @RequestMapping("/receiveData")
@HeaderSignIgnore @HeaderSignIgnore
@IgnoreLogin @IgnoreLogin
public String receiveData(String message, String sign){ public RestResponse receiveData(String message, String sign){
logger.info("message:{}, sign:{}", message,sign); logger.info("message:{}, sign:{}", message,sign);
return "success"; return RestResponse.success();
} }
public static File multipartFileToFile(MultipartFile file) throws Exception { public static File multipartFileToFile(MultipartFile file) throws Exception {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment