Optimize function name

This commit is contained in:
2023-11-29 11:34:21 +08:00
parent 7cf6b5cea2
commit 3d178aa8fe
6 changed files with 12 additions and 12 deletions

View File

@@ -19,7 +19,7 @@
</where>
</select>
<select id="getWithRoleByList" resultMap="groupWithRoleMap">
<select id="selectListWithRoleByIds" resultMap="groupWithRoleMap">
select t_group.id as group_id,
t_group.name as group_name,
t_group.enable as group_enable,
@@ -45,7 +45,7 @@
</where>
</select>
<select id="selectOne" resultMap="groupWithRoleMap">
<select id="selectOneById" resultMap="groupWithRoleMap">
select t_group.id as group_id,
t_group.name as group_name,
t_group.enable as group_enable,

View File

@@ -19,7 +19,7 @@
</where>
</select>
<select id="getWithPowerByList" resultMap="roleWithPowerMap">
<select id="selectListWithPowerByIds" resultMap="roleWithPowerMap">
select distinct t_role.id as role_id,
t_role.name as role_name,
t_role.enable as role_enable,
@@ -57,7 +57,7 @@
</where>
</select>
<select id="selectOne" resultMap="roleWithPowerMap">
<select id="selectOneById" resultMap="roleWithPowerMap">
select distinct t_role.id as role_id,
t_role.name as role_name,
t_role.enable as role_enable,