id, company_code, company_name, status, created_at, updated_at
insert into sys_company (id, company_code, company_name, status, created_at, updated_at)
values (#{id}, #{companyCode}, #{companyName}, #{status}, current_timestamp, current_timestamp)
update sys_company
set status = #{status}, updated_at = current_timestamp
where id = #{id}
delete from sys_company