refactor: 移除角色状态字段

This commit is contained in:
2024-04-27 17:32:54 +08:00
parent dbe93df8bc
commit e89ba7d5cd
13 changed files with 13 additions and 72 deletions

View File

@@ -11,7 +11,6 @@
WHERE t5.id = #{userId}
AND t1.status = 1
AND t1.permission IS NOT NULL
AND t3.status = 1
</select>
<select id="selectListByRoleCode" resultType="top.continew.admin.system.model.entity.MenuDO">
@@ -21,6 +20,5 @@
LEFT JOIN sys_role AS t3 ON t3.id = t2.role_id
WHERE t3.code = #{roleCode}
AND t1.status = 1
AND t3.status = 1
</select>
</mapper>