Merge branch 'master' into macro
This commit is contained in:
18019465682 2020-12-20 22:57:37 +08:00
commit d38be7aa4d
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
<mapper namespace="com.letoy.edu.dao.UserApiMapper">
<select id="getApiListByUserId" resultType="MyApi">
select b.user_id, b.name, b.url, b.method from user_info as a, api_table as b
select b.api_id, b.name, b.url, b.method from user_info as a, api_table as b
where
a.roles = b.role and a.user_id=#{id};
</select>