chore: 移除微信授权登录和AI 模块

This commit is contained in:
Ray.Hao
2026-02-11 11:35:04 +08:00
parent 0fb278f6ff
commit e735f768b5
37 changed files with 39 additions and 2104 deletions

View File

@@ -147,24 +147,6 @@
t1.username = #{username} AND t1.is_deleted = 0
</select>
<!-- 根据微信openid获取用户的认证信息 -->
<select id="getAuthInfoByOpenId" resultMap="AuthCredentialsMap">
SELECT
t1.id userId,
t1.username,
t1.nickname,
t1.PASSWORD,
t1.STATUS,
t1.dept_id ,
t3.CODE
FROM
sys_user t1
LEFT JOIN sys_user_role t2 ON t2.user_id = t1.id
LEFT JOIN sys_role t3 ON t3.id = t2.role_id
WHERE
t1.openid = #{openid} AND t1.is_deleted = 0
</select>
<!-- 根据手机号获取用户的认证信息 -->
<select id="getAuthInfoByMobile" resultMap="AuthCredentialsMap">
SELECT