token管理相关接口,关联相关接口参数修改

This commit is contained in:
liuzhaotian
2025-03-04 16:16:07 +08:00
parent 2d9db3f370
commit c694e40812
23 changed files with 1111 additions and 41 deletions
@@ -43,6 +43,12 @@ knife4j:
setting:
language: zh_cn
# JWT 密钥配置
jwt:
secret: BjEM0tnL3W5zYLQ6pllol49uYVXe+f66pHyOM/tkGWg=
# MyBatis Plus 的配置项
mybatis-plus:
configuration:
@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.cf.imes.module.system.dal.mysql.tokenconfig.TokenConfigMapper">
<select id="selectAppTypeByOrganId" resultType="java.lang.Integer">
select distinct app_type
from system_config_token
where organ_id = #{organId}
and deleted = false;
</select>
<delete id="deleteTokenConfig">
delete from system_config_token where id = #{id};
</delete>
</mapper>