select notice_id, full_name, phone, bind_date, bind_status, wx_full_name, station_id, station_name from station_notice
insert into station_notice
full_name,
phone,
bind_date,
bind_status,
wx_full_name,
station_id,
station_name,
#{fullName},
#{phone},
#{bindDate},
#{bindStatus},
#{wxFullName},
#{stationId},
#{stationName},
update station_notice
full_name = #{fullName},
phone = #{phone},
bind_date = #{bindDate},
bind_status = #{bindStatus},
wx_full_name = #{wxFullName},
station_id = #{stationId},
station_name = #{stationName},
where notice_id = #{noticeId}
delete from station_notice where notice_id = #{noticeId}
delete from station_notice where notice_id in
#{noticeId}