|
|
@ -12,6 +12,7 @@ import com.hyp.web.controller.manager.FileRelationManager;
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
@ -51,7 +52,7 @@ public class FileRelationController extends BaseController {
|
|
|
|
@PostMapping("/upload")
|
|
|
|
@PostMapping("/upload")
|
|
|
|
public AjaxResult uploadFile(MultipartFile file,
|
|
|
|
public AjaxResult uploadFile(MultipartFile file,
|
|
|
|
@RequestParam String applyId,
|
|
|
|
@RequestParam String applyId,
|
|
|
|
@RequestParam String filename,
|
|
|
|
@RequestParam(required = false) String filename,
|
|
|
|
@RequestParam String fileCode) {
|
|
|
|
@RequestParam String fileCode) {
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
// 上传文件路径
|
|
|
|
// 上传文件路径
|
|
|
@ -59,6 +60,9 @@ public class FileRelationController extends BaseController {
|
|
|
|
// 上传并返回新文件名称
|
|
|
|
// 上传并返回新文件名称
|
|
|
|
String fileNames = FileUploadUtils.upload(filePath, file);
|
|
|
|
String fileNames = FileUploadUtils.upload(filePath, file);
|
|
|
|
String url = serverConfig.getUrl() + fileNames;
|
|
|
|
String url = serverConfig.getUrl() + fileNames;
|
|
|
|
|
|
|
|
if(StringUtils.isBlank(filename)){
|
|
|
|
|
|
|
|
filename = fileNames;
|
|
|
|
|
|
|
|
}
|
|
|
|
String originalFilename = FileUtils.getNameNotSuffix(file.getOriginalFilename()) ;
|
|
|
|
String originalFilename = FileUtils.getNameNotSuffix(file.getOriginalFilename()) ;
|
|
|
|
return AjaxResult.success(fileRelationManager.save(applyId,filename,fileCode,url,originalFilename));
|
|
|
|
return AjaxResult.success(fileRelationManager.save(applyId,filename,fileCode,url,originalFilename));
|
|
|
|
} catch (Exception e) {
|
|
|
|
} catch (Exception e) {
|
|
|
|