select id,
station_id,
third_party_type,
start_mode,
create_time,
create_by,
update_time,
update_by,
del_flag
from thirdparty_station_relation
id,
station_id,
third_party_type,
start_mode,
create_time,
create_by,
update_time,
update_by,
del_flag
insert into thirdparty_station_relation
station_id,
third_party_type,
start_mode,
create_time,
create_by,
update_time,
update_by,
del_flag,
#{stationId},
#{thirdPartyType},
#{startMode},
#{createTime},
#{createBy},
#{updateTime},
#{updateBy},
#{delFlag},
update thirdparty_station_relation
station_id = #{stationId},
third_party_type = #{thirdPartyType},
start_mode = #{startMode},
create_time = #{createTime},
create_by = #{createBy},
update_time = #{updateTime},
update_by = #{updateBy},
del_flag = #{delFlag},
where station_id = #{stationId,jdbcType=BIGINT}
delete
from thirdparty_station_relation
where id = #{id}
delete
from thirdparty_station_relation where id in
#{id}
update
thirdparty_station_relation
set del_flag = '1'
where station_id = #{stationId,jdbcType=VARCHAR}
and third_party_type in
#{type,jdbcType=VARCHAR}