select id, member_id, station_id, create_time, create_by, update_time, update_by from member_station_relation
id, member_id, station_id, create_time, create_by, update_time, update_by
insert into member_station_relation
member_id,station_id,create_time,create_by,update_time,update_by,#{memberId},#{stationId},#{createTime},#{createBy},#{updateTime},#{updateBy},
update member_station_relation
member_id = #{memberId},station_id = #{stationId},create_time = #{createTime},create_by = #{createBy},update_time = #{updateTime},update_by = #{updateBy},
where id = #{id}
delete from member_station_relation where id = #{id}
delete from member_station_relation where id in
#{id}
delete from member_station_relation
where member_id = #{memberId,jdbcType=VARCHAR}
and station_id = #{stationId,jdbcType=BIGINT}