|
@@ -1,6 +1,7 @@
|
|
package com.rongwei.bsserver.controller;
|
|
package com.rongwei.bsserver.controller;
|
|
|
|
|
|
|
|
|
|
|
|
+import com.alibaba.fastjson.JSONObject;
|
|
import com.rongwei.bscommon.sys.service.LuckysheetService;
|
|
import com.rongwei.bscommon.sys.service.LuckysheetService;
|
|
import com.rongwei.bscommon.sys.service.ZhcxProjectManageRectifyBatchService;
|
|
import com.rongwei.bscommon.sys.service.ZhcxProjectManageRectifyBatchService;
|
|
import com.rongwei.bscommon.sys.service.ZhcxProjectManageService;
|
|
import com.rongwei.bscommon.sys.service.ZhcxProjectManageService;
|
|
@@ -106,8 +107,8 @@ public class ZhcxProjectManageController {
|
|
@PostMapping("/updateDataVerification")
|
|
@PostMapping("/updateDataVerification")
|
|
@ApiOperation("更新excel下拉框")
|
|
@ApiOperation("更新excel下拉框")
|
|
public R updateDataVerification(@RequestBody UpdateDataVerificationRequest req) {
|
|
public R updateDataVerification(@RequestBody UpdateDataVerificationRequest req) {
|
|
- luckysheetService.updateDataVerification(req);
|
|
|
|
- return R.ok();
|
|
|
|
|
|
+ final JSONObject verifyData = luckysheetService.updateDataVerification(req);
|
|
|
|
+ return R.ok(verifyData);
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|