update 平台配置页面

This commit is contained in:
2024-04-24 17:08:14 +08:00
parent bf0e3f5334
commit 9ed65fbd23
13 changed files with 375 additions and 42 deletions

View File

@@ -227,4 +227,14 @@
and t1.third_party_type = #{thirdPlatformType,jdbcType=VARCHAR}
GROUP BY t3.id
</select>
<select id="selectStationList" resultType="com.jsowell.pile.vo.base.StationInfoVO">
select
t1.station_id as stationId,
t2.station_name as stationName
from thirdparty_station_relation t1
join pile_station_info t2 on t2.id = t1.station_id and t2.del_flag = '0'
where t1.del_flag = '0'
and t1.third_party_type = #{thirdPlatformType,jdbcType=VARCHAR}
</select>
</mapper>