修复新增角色时排序号无效

This commit is contained in:
TinyAnts 2022-09-15 11:58:14 +08:00
parent 2121ab6db9
commit 76e7623643
1 changed files with 1 additions and 0 deletions

View File

@ -148,6 +148,7 @@ public class SystemAuthRoleServiceImpl implements ISystemAuthRoleService {
SystemAuthRole model = new SystemAuthRole();
model.setName(systemAuthRoleParam.getName().trim());
model.setRemark(systemAuthRoleParam.getRemark());
model.setSort(systemAuthRoleParam.getSort());
model.setIsDisable(systemAuthRoleParam.getIsDisable());
model.setCreateTime(System.currentTimeMillis() / 1000);
model.setUpdateTime(System.currentTimeMillis() / 1000);