|
@@ -50,6 +50,10 @@ public class UploadController {
|
|
|
@Value("${report.file.jsonTargetPath}")
|
|
|
private String jsonTargetPath;
|
|
|
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 上传xml及JSON文件
|
|
|
+ */
|
|
|
@PostMapping("/uploadUi")
|
|
|
public Result uploadUi(@RequestParam("files") MultipartFile[] files ,@RequestParam("customerName") String customerName,
|
|
|
@RequestParam("headInfId") String headInfId) {
|
|
@@ -95,6 +99,9 @@ public class UploadController {
|
|
|
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 上传mod文件
|
|
|
+ */
|
|
|
@PostMapping("/uploadMod")
|
|
|
public Result uploadMod(@RequestParam("files") MultipartFile[] files ,@RequestParam("customerName") String customerName,
|
|
|
@RequestParam("headInfId") String headInfId) {
|