select config_id, config_name, config_key, config_value, config_type, create_by, create_time, update_by, update_time, remark, group_id from sys_config and config_id = #{configId} and config_key = #{configKey} and group_id = #{groupId} insert into sys_config ( config_name, config_key, config_value, config_type, create_by, remark, group_id, create_time )values( #{configName}, #{configKey}, #{configValue}, #{configType}, #{createBy}, #{remark}, #{groupId}, sysdate() ) update sys_config config_name = #{configName}, config_key = #{configKey}, config_value = #{configValue}, config_type = #{configType}, update_by = #{updateBy}, remark = #{remark}, group_id = #{groupId}, update_time = sysdate() where config_id = #{configId} delete from sys_config where config_id = #{configId} delete from sys_config where config_id in #{configId} update sys_config config_name = #{configName}, config_value = #{configValue}, config_type = #{configType}, update_by = #{updateBy}, remark = #{remark}, group_id = #{groupId}, update_time = sysdate() where config_key = #{configKey}