select id, parent_id, organization_type, organization_name, organization_address, stake_mark_id, rescue_unit, description, create_time, update_time from dc_organization
insert into dc_organization
id,
parent_id,
organization_type,
organization_name,
organization_address,
stake_mark_id,
rescue_unit,
`description`,
create_time,
update_time,
#{id},
#{parentId},
#{organizationType},
#{organizationName},
#{organizationAddress},
#{stakeMarkId},
#{rescueUnit},
#{description},
#{createTime},
#{updateTime},
update dc_organization
parent_id = #{parentId},
organization_type = #{organizationType},
organization_name = #{organizationName},
organization_address = #{organizationAddress},
stake_mark_id = #{stakeMarkId},
rescue_unit = #{rescueUnit},
description = #{description},
create_time = #{createTime},
update_time = #{updateTime},
where id = #{id}
delete from dc_organization where id = #{id}
delete from dc_organization where id in
#{id}