select id, merchants_id, merchants_name,interests_policy_id,interests_policy_name, account, create_by, create_time, update_by, update_time, is_del from interests_table
insert into interests_table
merchants_id,
merchants_name,
interests_policy_id,
interests_policy_name,
account,
create_by,
create_time,
update_by,
update_time,
is_del,
#{merchantsId},
#{merchantsName},
#{interestsPolicyId},
#{interestsPolicyName},
#{account},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
#{isDel},
update interests_table
merchants_id = #{merchantsId},
merchants_name = #{merchantsName},
interests_policy_id = #{interestsPolicyId},
interests_policy_name = #{interestsPolicyName},
account = #{account},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
is_del = #{isDel},
where id = #{id}
delete from interests_table where id = #{id}
delete from interests_table where id in
#{id}