update 推送联联平台后管页面

This commit is contained in:
Lemon
2023-06-05 16:43:26 +08:00
parent c080cdd2fd
commit e2f175bb75
7 changed files with 105 additions and 10 deletions

View File

@@ -119,4 +119,18 @@
from thirdparty_setting_info
where station_id = #{stationId,jdbcType=BIGINT}
</select>
<select id="selectThirdInfo" resultMap="ThirdPartySettingInfoResult">
select <include refid="Base_Column_List"/>
from thirdparty_setting_info
<where>
<if test="stationId != null">
and station_id = #{stationId,jdbcType=BIGINT}
</if>
<if test="type != null and type != ''">
and type = #{type,jdbcType=VARCHAR}
</if>
</where>
limit 1
</select>
</mapper>