station_setting_relation ----> thirdparty_station_relation

This commit is contained in:
Lemon
2023-07-07 14:40:19 +08:00
parent 04b4859bcb
commit a1c8dfd525
12 changed files with 196 additions and 202 deletions

View File

@@ -2,9 +2,9 @@
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.jsowell.pile.mapper.StationSettingRelationMapper">
<mapper namespace="com.jsowell.pile.mapper.ThirdPartyStationRelationMapper">
<resultMap type="com.jsowell.pile.domain.StationSettingRelation" id="StationSettingRelationResult">
<resultMap type="com.jsowell.pile.domain.ThirdPartyStationRelation" id="ThirdPartyStationRelationResult">
<result property="id" column="id" />
<result property="stationId" column="station_id" />
<result property="thirdPartyType" column="third_party_type" />
@@ -15,29 +15,29 @@
<result property="delFlag" column="del_flag" />
</resultMap>
<sql id="selectStationSettingRelationVo">
select id, station_id, third_party_type, create_time, create_by, update_time, update_by, del_flag from station_setting_relation
<sql id="selectThirdPartyStationRelationVo">
select id, station_id, third_party_type, create_time, create_by, update_time, update_by, del_flag from thirdparty_station_relation
</sql>
<sql id="Base_Column_List" >
id, station_id, third_party_type, create_time, create_by, update_time, update_by, del_flag
</sql>
<select id="selectStationSettingRelationList" parameterType="com.jsowell.pile.domain.StationSettingRelation" resultMap="StationSettingRelationResult">
<include refid="selectStationSettingRelationVo"/>
<select id="selectThirdPartyStationRelationList" parameterType="com.jsowell.pile.domain.ThirdPartyStationRelation" resultMap="ThirdPartyStationRelationResult">
<include refid="selectThirdPartyStationRelationVo"/>
<where>
<if test="stationId != null "> and station_id = #{stationId}</if>
<if test="thirdPartyType != null and thirdPartyType != ''"> and third_party_type = #{thirdPartyType}</if>
</where>
</select>
<select id="selectStationSettingRelationById" parameterType="Long" resultMap="StationSettingRelationResult">
<include refid="selectStationSettingRelationVo"/>
<select id="selectThirdPartyStationRelationById" parameterType="Long" resultMap="ThirdPartyStationRelationResult">
<include refid="selectThirdPartyStationRelationVo"/>
where id = #{id}
</select>
<insert id="insertStationSettingRelation" parameterType="com.jsowell.pile.domain.StationSettingRelation" useGeneratedKeys="true" keyProperty="id">
insert into station_setting_relation
<insert id="insertThirdPartyStationRelation" parameterType="com.jsowell.pile.domain.ThirdPartyStationRelation" useGeneratedKeys="true" keyProperty="id">
insert into thirdparty_station_relation
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="stationId != null">station_id,</if>
<if test="thirdPartyType != null">third_party_type,</if>
@@ -58,8 +58,8 @@
</trim>
</insert>
<update id="updateStationSettingRelation" parameterType="com.jsowell.pile.domain.StationSettingRelation">
update station_setting_relation
<update id="updateThirdPartyStationRelation" parameterType="com.jsowell.pile.domain.ThirdPartyStationRelation">
update thirdparty_station_relation
<trim prefix="SET" suffixOverrides=",">
<if test="stationId != null">station_id = #{stationId},</if>
<if test="thirdPartyType != null">third_party_type = #{thirdPartyType},</if>
@@ -72,18 +72,18 @@
where station_id = #{stationId,jdbcType=BIGINT}
</update>
<delete id="deleteStationSettingRelationById" parameterType="Long">
delete from station_setting_relation where id = #{id}
<delete id="deleteThirdPartyStationRelationById" parameterType="Long">
delete from thirdparty_station_relation where id = #{id}
</delete>
<delete id="deleteStationSettingRelationByIds" parameterType="String">
delete from station_setting_relation where id in
<delete id="deleteThirdPartyStationRelationByIds" parameterType="String">
delete from thirdparty_station_relation where id in
<foreach item="id" collection="array" open="(" separator="," close=")">
#{id}
</foreach>
</delete>
<select id="selectRelationInfo" resultType="com.jsowell.pile.vo.base.StationSettingRelationVO">
<select id="selectRelationInfo" resultType="com.jsowell.pile.vo.base.ThirdPartyStationRelationVO">
select
t1.station_id as stationId,
t1.third_party_type as thirdPartyType,
@@ -93,7 +93,7 @@
t2.sign_secret as signSecret,
t2.data_secret as dataSecret,
t2.data_secret_IV as dataSecretIv
from station_setting_relation t1 join thirdparty_setting_info t2 on t1.third_party_type = t2.type
from thirdparty_station_relation t1 join thirdparty_setting_info t2 on t1.third_party_type = t2.type
where t1.del_flag = '0'
<if test="stationId != null">
and t1.station_id = #{stationId,jdbcType=BIGINT}