select id, channel_name, channel_code, channel_type, channel_blurb, contacts, telephone, address, channel_head, status, mark, del_flag, create_by, create_time, update_by, update_time from t_project_channel
insert into t_project_channel
id,
channel_name,
channel_code,
channel_type,
channel_blurb,
contacts,
telephone,
address,
channel_head,
status,
mark,
del_flag,
create_by,
create_time,
update_by,
update_time,
#{id},
#{channelName},
#{channelCode},
#{channelType},
#{channelBlurb},
#{contacts},
#{telephone},
#{address},
#{channelHead},
#{status},
#{mark},
#{delFlag},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
update t_project_channel
channel_name = #{channelName},
channel_code = #{channelCode},
channel_type = #{channelType},
channel_blurb = #{channelBlurb},
contacts = #{contacts},
telephone = #{telephone},
address = #{address},
channel_head = #{channelHead},
status = #{status},
mark = #{mark},
del_flag = #{delFlag},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
where id = #{id}
delete from t_project_channel where id = #{id}
delete from t_project_channel where id in
#{id}
update t_project_channel
set del_flag = 1
where id in
#{id}