select config_id,config_type,config_code,config_name,config_optiontype,config_defvalue,config_sort,
status,create_by,create_time,update_by,update_time,remark from com_config_dict
insert into com_config_dict(
config_id,
config_type,
config_code,
config_name,
config_optiontype,
config_defvalue,
config_sort,
status,
remark,
create_by,
create_time
)values(
#{configId},
#{configType},
#{configCode},
#{configName},
#{configOptiontype},
#{configDefvalue},
#{configSort},
#{status},
#{remark},
#{createBy},
getdate()
)
delete from com_config_dict where config_id = #{configId}
delete from com_config_dict where config_id in
#{configId}
update com_config_dict
config_type = #{configType},
config_code = #{configCode},
config_name = #{configName},
config_optiontype = #{configOptiontype},
config_defvalue = #{configDefvalue},
config_sort = #{configSort},
status = #{status},
remark = #{remark},
update_by = #{updateBy},
update_time = getdate()
where config_id = #{configId}