mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-13 21:32:07 +08:00
token管理相关接口,关联相关接口参数修改
This commit is contained in:
@@ -43,6 +43,12 @@ knife4j:
|
||||
setting:
|
||||
language: zh_cn
|
||||
|
||||
|
||||
# JWT 密钥配置
|
||||
jwt:
|
||||
secret: BjEM0tnL3W5zYLQ6pllol49uYVXe+f66pHyOM/tkGWg=
|
||||
|
||||
|
||||
# MyBatis Plus 的配置项
|
||||
mybatis-plus:
|
||||
configuration:
|
||||
|
||||
+30
@@ -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>
|
||||
Reference in New Issue
Block a user