Browse Source

更新字段匹配

tags/v2.4.1
xiaoying 1 year ago
parent
commit
da03a5666e
5 changed files with 13 additions and 1 deletions
  1. +1
    -1
      tuoheng_oidc_admin/src/main/resources/mapper/AuthoritiesMapper.xml
  2. BIN
      tuoheng_oidc_admin/target/classes/com/tuoheng/mapper/AuthoritiesMapper.class
  3. BIN
      tuoheng_oidc_admin/target/classes/com/tuoheng/mapper/ClientUserRoleMapper.class
  4. +6
    -0
      tuoheng_oidc_admin/target/classes/mapper/AuthoritiesMapper.xml
  5. +6
    -0
      tuoheng_oidc_admin/target/classes/mapper/ClientUserRoleMapper.xml

+ 1
- 1
tuoheng_oidc_admin/src/main/resources/mapper/AuthoritiesMapper.xml View File

delete delete
from authorities from authorities
where user_id = #{userId} where user_id = #{userId}
and client_id = #{clientId}
and authority = #{clientId}
</delete> </delete>
<select id="selectByUserId" resultType="com.tuoheng.model.po.AuthoritiesPo"> <select id="selectByUserId" resultType="com.tuoheng.model.po.AuthoritiesPo">
SELECT id, user_id, username, authority SELECT id, user_id, username, authority

BIN
tuoheng_oidc_admin/target/classes/com/tuoheng/mapper/AuthoritiesMapper.class View File


BIN
tuoheng_oidc_admin/target/classes/com/tuoheng/mapper/ClientUserRoleMapper.class View File


+ 6
- 0
tuoheng_oidc_admin/target/classes/mapper/AuthoritiesMapper.xml View File

(#{it.userId}, #{it.username}, #{it.authority}, #{it.createUser}) (#{it.userId}, #{it.username}, #{it.authority}, #{it.createUser})
</foreach> </foreach>
</insert> </insert>
<delete id="deleteByUserIdAndClient">
delete
from authorities
where user_id = #{userId}
and client_id = #{clientId}
</delete>
<select id="selectByUserId" resultType="com.tuoheng.model.po.AuthoritiesPo"> <select id="selectByUserId" resultType="com.tuoheng.model.po.AuthoritiesPo">
SELECT id, user_id, username, authority SELECT id, user_id, username, authority
FROM authorities FROM authorities

+ 6
- 0
tuoheng_oidc_admin/target/classes/mapper/ClientUserRoleMapper.xml View File

</set> </set>
where user_id = #{userId} and client_id = #{clientId} where user_id = #{userId} and client_id = #{clientId}
</update> </update>
<delete id="deleteByUserIdAndClient">
delete
from t_client_user_role
where user_id = #{userId}
and client_id = #{clientId}
</delete>
<select id="selectListByUserId" resultType="com.tuoheng.model.po.ClientUserRolePo"> <select id="selectListByUserId" resultType="com.tuoheng.model.po.ClientUserRolePo">
SELECT * SELECT *
FROM t_client_user_role FROM t_client_user_role

Loading…
Cancel
Save