id, platform_name, platform_type, url_prefix, their_operator_id, their_operator_secret, their_data_secret,
their_data_secret_iv, their_sig_secret, their_public_secret, their_private_secret, our_operator_secret, our_data_secret, our_data_secret_iv,
our_sig_secret, our_public_secret, our_private_secret, create_by, create_time, update_by, update_time, del_flag
select
from thirdparty_secret_info
insert into thirdparty_secret_info
platform_name,
platform_type,
url_prefix,
their_operator_id,
their_operator_secret,
their_data_secret,
their_data_secret_iv,
their_sig_secret,
their_public_secret,
their_private_secret,
our_operator_secret,
our_data_secret,
our_data_secret_iv,
our_sig_secret,
our_public_secret,
our_private_secret,
create_by,
create_time,
update_by,
update_time,
del_flag,
#{platformName},
#{platformType},
#{urlPrefix},
#{theirOperatorId},
#{theirOperatorSecret},
#{theirDataSecret},
#{theirDataSecretIv},
#{theirSigSecret},
#{theirPublicSecret},
#{theirPrivateSecret},
#{ourOperatorSecret},
#{ourDataSecret},
#{ourDataSecretIv},
#{ourSigSecret},
#{ourPublicSecret},
#{ourPrivateSecret},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
#{delFlag},
update thirdparty_secret_info
platform_name = #{platformName},
platform_type = #{platformType},
url_prefix = #{urlPrefix},
their_operator_id = #{theirOperatorId},
their_operator_secret = #{theirOperatorSecret},
their_data_secret = #{theirDataSecret},
their_data_secret_iv = #{theirDataSecretIv},
their_sig_secret = #{theirSigSecret},
their_public_secret = #{theirPublicSecret},
their_private_secret = #{theirPrivateSecret},
our_operator_secret = #{ourOperatorSecret},
our_data_secret = #{ourDataSecret},
our_data_secret_iv = #{ourDataSecretIv},
our_sig_secret = #{ourSigSecret},
our_public_secret = #{ourPublicSecret},
our_private_secret = #{ourPrivateSecret},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
del_flag = #{delFlag},
where id = #{id}
delete from thirdparty_secret_info where id = #{id}
delete from thirdparty_secret_info where id in
#{id}