select testing_id, company_id, create_by, create_user_id, create_time,
update_by, update_user_id, update_time, remark,
testing_name,
testing_detection_time, testing_test_conclusion, testing_owned_file,
testing_owned_picture, testing_report_validity_period
from dc_third_party_testing
insert into dc_third_party_testing
testing_name,
company_id,
create_by,
create_user_id,
create_time,
update_by,
update_user_id,
update_time,
remark,
testing_detection_time,
testing_test_conclusion,
testing_owned_file,
testing_owned_picture,
testing_report_validity_period,
#{testingName},
#{companyId},
#{createBy},
#{createUserId},
#{createTime},
#{updateBy},
#{updateUserId},
#{updateTime},
#{remark},
#{testingDetectionTime},
#{testingTestConclusion},
#{testingOwnedFile},
#{testingOwnedPicture},
#{testingReportValidityPeriod},
update dc_third_party_testing
testing_name = #{testingName},
company_id = #{companyId},
create_by = #{createBy},
create_user_id = #{createUserId},
create_time = #{createTime},
update_by = #{updateBy},
update_user_id = #{updateUserId},
update_time = #{updateTime},
remark = #{remark},
testing_detection_time = #{testingDetectionTime},
testing_test_conclusion = #{testingTestConclusion},
testing_owned_file = #{testingOwnedFile},
testing_owned_picture = #{testingOwnedPicture},
testing_report_validity_period = #{testingReportValidityPeriod},
where testing_id = #{testingId}
delete from dc_third_party_testing where testing_id = #{testingId}
delete from dc_third_party_testing where testing_id in
#{testingId}