select id,
icd10id,
icd10code,
icd10name,
orgid,
del_flag,
update_by,
update_time,
create_by,
create_time,
isupload,
upload_time,
type,
outid,
pid,
guid
from icd10_association
insert into icd10_association
icd10id,
icd10code,
icd10name,
orgid,
del_flag,
update_by,
update_time,
create_by,
create_time,
isupload,
upload_time,
outid,
type,
pid,
guid,
#{icd10id},
#{icd10code},
#{icd10name},
#{orgid},
#{delFlag},
#{updateBy},
#{updateTime},
#{createBy},
#{createTime},
#{isupload},
#{uploadTime},
#{outid},
#{type},
#{pid},
#{guid},
update icd10_association
icd10id = #{icd10id},
icd10code = #{icd10code},
orgid = #{orgid},
del_flag = #{delFlag},
update_by = #{updateBy},
update_time = #{updateTime},
create_by = #{createBy},
create_time = #{createTime},
isupload = #{isupload},
upload_time = #{uploadTime},
outid = #{outid},
type = #{type},
pid = #{pid},
guid = #{guid},
where id = #{id}
delete
from icd10_association
where id = #{id}
delete from icd10_association where id in
#{id}