udpate 联联获取令牌接口

This commit is contained in:
Lemon
2023-05-27 09:18:54 +08:00
parent 94d706f49e
commit 53b5432f9f
5 changed files with 63 additions and 26 deletions

View File

@@ -23,6 +23,11 @@
select id, name, operator_id, operator_secret, sign_secret, data_secret, data_secret_IV, create_time, create_by, update_time, update_by, del_flag from docking_platform_config
</sql>
<sql id="Base_Column_List">
<!--@mbg.generated-->
id, name, operator_id, operator_secret, sign_secret, data_secret, data_secret_IV, create_time, create_by, update_time, update_by, del_flag
</sql>
<select id="selectDockingPlatformConfigList" parameterType="com.jsowell.pile.domain.DockingPlatformConfig" resultMap="DockingPlatformConfigResult">
<include refid="selectDockingPlatformConfigVo"/>
<where>
@@ -98,4 +103,10 @@
#{id}
</foreach>
</delete>
<select id="getInfoByOperatorId" resultMap="DockingPlatformConfigResult">
select <include refid="Base_Column_List"/>
from docking_platform_config
where operator_id = #{operatorId,jdbcType=VARCHAR}
</select>
</mapper>