DELETE FROM erf_exp_tri_confirm_detail
WHERE apply_no = #{applyNo}
DELETE FROM erf_exp_tri_confirm
WHERE apply_no = #{applyNo}
DELETE FROM sys_oss
WHERE order_ref1 = #{orderRef1}
AND order_ref2 = #{orderRef2}
AND order_ref6 = #{orderRef6}
DELETE FROM erf_flow_node_instance
WHERE apply_no = #{applyNo}
INSERT INTO sys_oss
(url, create_date, new_file_name, file_name, created_by, file_type,
order_ref1, order_ref2, order_ref3, order_ref4, order_ref5, order_ref6,
file_suffix, file_type_code, order_reftype, conclusion, c_additional_info, project_ispush)
VALUES (
#{attachment.url},
GETDATE(),
#{attachment.new_file_name},
#{attachment.file_name},
#{attachment.created_by},
#{attachment.file_type},
'ERF',
#{targetApplyNo},
#{attachment.order_ref3},
#{attachment.order_ref4},
#{attachment.order_ref5},
'EXP_APPLY',
#{attachment.file_suffix},
#{attachment.file_type_code},
#{attachment.order_reftype},
#{attachment.conclusion},
#{attachment.c_additional_info},
#{attachment.project_ispush}
)