id,
request_id,
task_no,
status,
msg,
job_id,
owner,
type,
priority,
source_name,
target_name,
create_by,
create_time,
update_by,
update_time,
is_delete
INSERT INTO agv_task_result
request_id,
task_no,
status,
msg,
job_id,
owner,
type,
priority,
source_name,
target_name,
create_by,
update_by,
create_time,
update_time,
is_delete
VALUES
#{requestId},
#{taskNo},
#{status},
#{msg},
#{jobId},
#{owner},
#{type},
#{priority},
#{sourceName},
#{targetName},
#{createBy},
#{updateBy},
NOW(),
NOW(),
'0'
UPDATE agv_task_result SET
request_id = #{requestId},
task_no = #{taskNo},
status = #{status},
msg = #{msg},
update_by = #{updateBy},
update_time = NOW()
WHERE id = #{id}
DELETE FROM agv_task_result WHERE id = #{id}
DELETE FROM agv_task_result WHERE id IN
#{id}