fix(自定义对比): 单元格编辑问题修复

This commit is contained in:
yjz
2023-10-30 17:19:58 +08:00
parent e3414dc946
commit 00f9636035
2 changed files with 8 additions and 9 deletions
@@ -166,7 +166,7 @@ public class LawsCustomCompareInfoController {
@AutoLog(value = "自定义对比-单元格内容保存")
@ApiOperation(value="自定义对比-单元格内容保存", notes="自定义对比-单元格内容保存")
@PostMapping(value = "/saveCell")
public Result<IPage<StandardVO>> saveCell(LawsCustomCompareCell lawsCustomCompareCell) {
public Result<IPage<StandardVO>> saveCell(@RequestBody LawsCustomCompareCell lawsCustomCompareCell) {
lawsCustomCompareCellService.save(lawsCustomCompareCell);
return Result.OK(MessageUtils.getMessage(ResultCommon.OK));
}