Commit f5c3032c authored by LiuLin's avatar LiuLin

fix(JG):改造告知保存接口添加返回值

parent 8a2baafe
......@@ -47,10 +47,9 @@ public class JgReformNoticeController extends BaseController {
@TycloudOperation (ApiLevel = UserType.AGENCY)
@PostMapping (value = "/save")
@ApiOperation (httpMethod = "POST", value = "新增改造告知", notes = "新增改造告知")
public ResponseModel<String> save(@RequestParam String submitType, @RequestBody Map<String, Object> model) {
public ResponseModel<Object> save(@RequestParam String submitType, @RequestBody Map<String, Object> model) {
ReginParams reginParams = getSelectedOrgInfo();
jgReformNoticeService.saveNotice(submitType, model, reginParams);
return ResponseHelper.buildResponse("");
return ResponseHelper.buildResponse(jgReformNoticeService.saveNotice(submitType, model, reginParams));
}
......
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