分类更新

This commit is contained in:
wujj 2021-04-09 14:24:28 +08:00
parent 0d6c715065
commit 72c4fa49d8
1 changed files with 2 additions and 1 deletions

View File

@ -295,7 +295,8 @@ public class CategoryAction extends BaseAction {
return ResultData.build().error(getResString("cannot.select.child"));
}
}
categoryBiz.updateById(category);
// 这里不能使用mybitsplus 存在业务
categoryBiz.updateEntity(category);
return ResultData.build().success(category);
}