From 0288224c834fe471d183f580560b8bff04b968bc Mon Sep 17 00:00:00 2001 From: TinyAnts Date: Fri, 15 Apr 2022 15:06:25 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E8=A7=92=E8=89=B2=E6=8E=92?= =?UTF-8?q?=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/hxkj/admin/service/impl/SystemRoleServiceImpl.java | 1 + 1 file changed, 1 insertion(+) diff --git a/like-framework/like-admin/src/main/java/com/hxkj/admin/service/impl/SystemRoleServiceImpl.java b/like-framework/like-admin/src/main/java/com/hxkj/admin/service/impl/SystemRoleServiceImpl.java index 0f4a0924..f2fcaea2 100644 --- a/like-framework/like-admin/src/main/java/com/hxkj/admin/service/impl/SystemRoleServiceImpl.java +++ b/like-framework/like-admin/src/main/java/com/hxkj/admin/service/impl/SystemRoleServiceImpl.java @@ -168,6 +168,7 @@ public class SystemRoleServiceImpl implements ISystemRoleService { model.setId(systemRoleParam.getId()); model.setName(systemRoleParam.getName().trim()); model.setRemark(systemRoleParam.getRemark()); + model.setSort(systemRoleParam.getSort()); model.setIsDisable(systemRoleParam.getIsDisable()); model.setUpdateTime(System.currentTimeMillis() / 1000); systemRoleMapper.updateById(model);