select article_regulation_id, create_by, create_time, update_by, update_time, remark, regulation_title, regulation_content, company_id, regulation_type from tr_article_regulation
insert into tr_article_regulation
create_by,
create_time,
update_by,
update_time,
remark,
regulation_title,
regulation_content,
company_id,
regulation_type,
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
#{remark},
#{regulationTitle},
#{regulationContent},
#{companyId},
#{regulationType},
update tr_article_regulation
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
remark = #{remark},
regulation_title = #{regulationTitle},
regulation_content = #{regulationContent},
company_id = #{companyId},
regulation_type = #{regulationType},
where article_regulation_id = #{articleRegulationId}
delete from tr_article_regulation where article_regulation_id = #{articleRegulationId}
delete from tr_article_regulation where article_regulation_id in
#{articleRegulationId}