INSERT INTO t_converge (
id, name, batch_name, operation_time, file_path, status, type, read_message, file_cost_time, create_time
) VALUES (
#{id}, #{name}, #{batchName}, now(), #{filePath}, #{status}, #{type}, #{readMessage}, #{fileCostTime}, now()
)
UPDATE t_converge
name = #{name},
batch_name = #{batchName},
file_path = #{filePath},
status = #{status},
type = #{type},
read_message = #{readMessage},
file_cost_time = #{fileCostTime},
WHERE id = #{id}
DELETE FROM t_converge
WHERE id IN
#{id}