mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 03:25:12 +08:00
update 对接lianlian平台
This commit is contained in:
@@ -7,216 +7,228 @@ import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
|
||||
/**
|
||||
* 对接三方平台配置对象 thirdparty_secret_info
|
||||
*
|
||||
*
|
||||
* @author jsowell
|
||||
* @date 2024-04-18
|
||||
*/
|
||||
public class ThirdpartySecretInfo extends BaseEntity
|
||||
{
|
||||
public class ThirdpartySecretInfo extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 主键 */
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
private Long id;
|
||||
|
||||
/** 对接平台名称 */
|
||||
/**
|
||||
* 对接平台名称
|
||||
*/
|
||||
@Excel(name = "对接平台名称")
|
||||
private String platformName;
|
||||
|
||||
/** 对接平台类型 */
|
||||
/**
|
||||
* 对接平台类型
|
||||
*/
|
||||
@Excel(name = "对接平台类型")
|
||||
private String platformType;
|
||||
|
||||
/** 接口地址前缀 */
|
||||
/**
|
||||
* 接口地址前缀
|
||||
*/
|
||||
@Excel(name = "接口地址前缀")
|
||||
private String urlPrefix;
|
||||
|
||||
/** 对接平台标识(使用组织机构代码) */
|
||||
/**
|
||||
* 对接平台标识(使用组织机构代码)
|
||||
*/
|
||||
@Excel(name = "对接平台标识", readConverterExp = "使=用组织机构代码")
|
||||
private String theirOperatorId;
|
||||
|
||||
/** 对接平台生成的唯一识别密钥 */
|
||||
/**
|
||||
* 对接平台生成的唯一识别密钥
|
||||
*/
|
||||
@Excel(name = "对接平台生成的唯一识别密钥")
|
||||
private String theirOperatorSecret;
|
||||
|
||||
/** 对接平台生成的消息密钥 */
|
||||
/**
|
||||
* 对接平台生成的消息密钥
|
||||
*/
|
||||
@Excel(name = "对接平台生成的消息密钥")
|
||||
private String theirDataSecret;
|
||||
|
||||
/** 对接平台生成的初始化向量 */
|
||||
/**
|
||||
* 对接平台生成的初始化向量
|
||||
*/
|
||||
@Excel(name = "对接平台生成的初始化向量")
|
||||
private String theirDataSecretIv;
|
||||
|
||||
/** 对接平台生成的签名密钥 */
|
||||
/**
|
||||
* 对接平台生成的签名密钥
|
||||
*/
|
||||
@Excel(name = "对接平台生成的签名密钥")
|
||||
private String theirSigSecret;
|
||||
|
||||
/** 我方生成的唯一识别密钥 */
|
||||
/**
|
||||
* 我方生成的唯一识别密钥
|
||||
*/
|
||||
@Excel(name = "我方生成的唯一识别密钥")
|
||||
private String ourOperatorSecret;
|
||||
|
||||
/** 我方生成的消息密钥 */
|
||||
/**
|
||||
* 我方生成的消息密钥
|
||||
*/
|
||||
@Excel(name = "我方生成的消息密钥")
|
||||
private String ourDataSecret;
|
||||
|
||||
/** 我方生成的初始化向量 */
|
||||
/**
|
||||
* 我方生成的初始化向量
|
||||
*/
|
||||
@Excel(name = "我方生成的初始化向量")
|
||||
private String ourDataSecretIv;
|
||||
|
||||
/** 我方生成的签名密钥 */
|
||||
/**
|
||||
* 我方生成的签名密钥
|
||||
*/
|
||||
@Excel(name = "我方生成的签名密钥")
|
||||
private String ourSigSecret;
|
||||
|
||||
/** 删除标识(0-正常;1-删除) */
|
||||
/**
|
||||
* 删除标识(0-正常;1-删除)
|
||||
*/
|
||||
private String delFlag;
|
||||
|
||||
public void setId(Long id)
|
||||
{
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId()
|
||||
{
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
public void setPlatformName(String platformName)
|
||||
{
|
||||
|
||||
public void setPlatformName(String platformName) {
|
||||
this.platformName = platformName;
|
||||
}
|
||||
|
||||
public String getPlatformName()
|
||||
{
|
||||
public String getPlatformName() {
|
||||
return platformName;
|
||||
}
|
||||
public void setPlatformType(String platformType)
|
||||
{
|
||||
|
||||
public void setPlatformType(String platformType) {
|
||||
this.platformType = platformType;
|
||||
}
|
||||
|
||||
public String getPlatformType()
|
||||
{
|
||||
public String getPlatformType() {
|
||||
return platformType;
|
||||
}
|
||||
public void setUrlPrefix(String urlPrefix)
|
||||
{
|
||||
|
||||
public void setUrlPrefix(String urlPrefix) {
|
||||
this.urlPrefix = urlPrefix;
|
||||
}
|
||||
|
||||
public String getUrlPrefix()
|
||||
{
|
||||
public String getUrlPrefix() {
|
||||
return urlPrefix;
|
||||
}
|
||||
public void setTheirOperatorId(String theirOperatorId)
|
||||
{
|
||||
|
||||
public void setTheirOperatorId(String theirOperatorId) {
|
||||
this.theirOperatorId = theirOperatorId;
|
||||
}
|
||||
|
||||
public String getTheirOperatorId()
|
||||
{
|
||||
public String getTheirOperatorId() {
|
||||
return theirOperatorId;
|
||||
}
|
||||
public void setTheirOperatorSecret(String theirOperatorSecret)
|
||||
{
|
||||
|
||||
public void setTheirOperatorSecret(String theirOperatorSecret) {
|
||||
this.theirOperatorSecret = theirOperatorSecret;
|
||||
}
|
||||
|
||||
public String getTheirOperatorSecret()
|
||||
{
|
||||
public String getTheirOperatorSecret() {
|
||||
return theirOperatorSecret;
|
||||
}
|
||||
public void setTheirDataSecret(String theirDataSecret)
|
||||
{
|
||||
|
||||
public void setTheirDataSecret(String theirDataSecret) {
|
||||
this.theirDataSecret = theirDataSecret;
|
||||
}
|
||||
|
||||
public String getTheirDataSecret()
|
||||
{
|
||||
public String getTheirDataSecret() {
|
||||
return theirDataSecret;
|
||||
}
|
||||
public void setTheirDataSecretIv(String theirDataSecretIv)
|
||||
{
|
||||
|
||||
public void setTheirDataSecretIv(String theirDataSecretIv) {
|
||||
this.theirDataSecretIv = theirDataSecretIv;
|
||||
}
|
||||
|
||||
public String getTheirDataSecretIv()
|
||||
{
|
||||
public String getTheirDataSecretIv() {
|
||||
return theirDataSecretIv;
|
||||
}
|
||||
public void setTheirSigSecret(String theirSigSecret)
|
||||
{
|
||||
|
||||
public void setTheirSigSecret(String theirSigSecret) {
|
||||
this.theirSigSecret = theirSigSecret;
|
||||
}
|
||||
|
||||
public String getTheirSigSecret()
|
||||
{
|
||||
public String getTheirSigSecret() {
|
||||
return theirSigSecret;
|
||||
}
|
||||
public void setOurOperatorSecret(String ourOperatorSecret)
|
||||
{
|
||||
|
||||
public void setOurOperatorSecret(String ourOperatorSecret) {
|
||||
this.ourOperatorSecret = ourOperatorSecret;
|
||||
}
|
||||
|
||||
public String getOurOperatorSecret()
|
||||
{
|
||||
public String getOurOperatorSecret() {
|
||||
return ourOperatorSecret;
|
||||
}
|
||||
public void setOurDataSecret(String ourDataSecret)
|
||||
{
|
||||
|
||||
public void setOurDataSecret(String ourDataSecret) {
|
||||
this.ourDataSecret = ourDataSecret;
|
||||
}
|
||||
|
||||
public String getOurDataSecret()
|
||||
{
|
||||
public String getOurDataSecret() {
|
||||
return ourDataSecret;
|
||||
}
|
||||
public void setOurDataSecretIv(String ourDataSecretIv)
|
||||
{
|
||||
|
||||
public void setOurDataSecretIv(String ourDataSecretIv) {
|
||||
this.ourDataSecretIv = ourDataSecretIv;
|
||||
}
|
||||
|
||||
public String getOurDataSecretIv()
|
||||
{
|
||||
public String getOurDataSecretIv() {
|
||||
return ourDataSecretIv;
|
||||
}
|
||||
public void setOurSigSecret(String ourSigSecret)
|
||||
{
|
||||
|
||||
public void setOurSigSecret(String ourSigSecret) {
|
||||
this.ourSigSecret = ourSigSecret;
|
||||
}
|
||||
|
||||
public String getOurSigSecret()
|
||||
{
|
||||
public String getOurSigSecret() {
|
||||
return ourSigSecret;
|
||||
}
|
||||
public void setDelFlag(String delFlag)
|
||||
{
|
||||
|
||||
public void setDelFlag(String delFlag) {
|
||||
this.delFlag = delFlag;
|
||||
}
|
||||
|
||||
public String getDelFlag()
|
||||
{
|
||||
public String getDelFlag() {
|
||||
return delFlag;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this, ToStringStyle.JSON_STYLE)
|
||||
.append("id", getId())
|
||||
.append("platformName", getPlatformName())
|
||||
.append("platformType", getPlatformType())
|
||||
.append("urlPrefix", getUrlPrefix())
|
||||
.append("theirOperatorId", getTheirOperatorId())
|
||||
.append("theirOperatorSecret", getTheirOperatorSecret())
|
||||
.append("theirDataSecret", getTheirDataSecret())
|
||||
.append("theirDataSecretIv", getTheirDataSecretIv())
|
||||
.append("theirSigSecret", getTheirSigSecret())
|
||||
.append("ourOperatorSecret", getOurOperatorSecret())
|
||||
.append("ourDataSecret", getOurDataSecret())
|
||||
.append("ourDataSecretIv", getOurDataSecretIv())
|
||||
.append("ourSigSecret", getOurSigSecret())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.append("delFlag", getDelFlag())
|
||||
.toString();
|
||||
.append("id", getId())
|
||||
.append("platformName", getPlatformName())
|
||||
.append("platformType", getPlatformType())
|
||||
.append("urlPrefix", getUrlPrefix())
|
||||
.append("theirOperatorId", getTheirOperatorId())
|
||||
.append("theirOperatorSecret", getTheirOperatorSecret())
|
||||
.append("theirDataSecret", getTheirDataSecret())
|
||||
.append("theirDataSecretIv", getTheirDataSecretIv())
|
||||
.append("theirSigSecret", getTheirSigSecret())
|
||||
.append("ourOperatorSecret", getOurOperatorSecret())
|
||||
.append("ourDataSecret", getOurDataSecret())
|
||||
.append("ourDataSecretIv", getOurDataSecretIv())
|
||||
.append("ourSigSecret", getOurSigSecret())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.append("delFlag", getDelFlag())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,62 +1,64 @@
|
||||
package com.jsowell.thirdparty.mapper;
|
||||
|
||||
import com.jsowell.pile.vo.ThirdPartySecretInfoVO;
|
||||
import com.jsowell.thirdparty.domain.ThirdpartySecretInfo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 对接三方平台配置Mapper接口
|
||||
*
|
||||
*
|
||||
* @author jsowell
|
||||
* @date 2024-04-18
|
||||
*/
|
||||
public interface ThirdpartySecretInfoMapper
|
||||
{
|
||||
public interface ThirdpartySecretInfoMapper {
|
||||
/**
|
||||
* 查询对接三方平台配置
|
||||
*
|
||||
*
|
||||
* @param id 对接三方平台配置主键
|
||||
* @return 对接三方平台配置
|
||||
*/
|
||||
public ThirdpartySecretInfo selectThirdpartySecretInfoById(Long id);
|
||||
ThirdpartySecretInfo selectThirdpartySecretInfoById(Long id);
|
||||
|
||||
/**
|
||||
* 查询对接三方平台配置列表
|
||||
*
|
||||
*
|
||||
* @param thirdpartySecretInfo 对接三方平台配置
|
||||
* @return 对接三方平台配置集合
|
||||
*/
|
||||
public List<ThirdpartySecretInfo> selectThirdpartySecretInfoList(ThirdpartySecretInfo thirdpartySecretInfo);
|
||||
List<ThirdpartySecretInfo> selectThirdpartySecretInfoList(ThirdpartySecretInfo thirdpartySecretInfo);
|
||||
|
||||
/**
|
||||
* 新增对接三方平台配置
|
||||
*
|
||||
*
|
||||
* @param thirdpartySecretInfo 对接三方平台配置
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertThirdpartySecretInfo(ThirdpartySecretInfo thirdpartySecretInfo);
|
||||
int insertThirdpartySecretInfo(ThirdpartySecretInfo thirdpartySecretInfo);
|
||||
|
||||
/**
|
||||
* 修改对接三方平台配置
|
||||
*
|
||||
*
|
||||
* @param thirdpartySecretInfo 对接三方平台配置
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateThirdpartySecretInfo(ThirdpartySecretInfo thirdpartySecretInfo);
|
||||
int updateThirdpartySecretInfo(ThirdpartySecretInfo thirdpartySecretInfo);
|
||||
|
||||
/**
|
||||
* 删除对接三方平台配置
|
||||
*
|
||||
*
|
||||
* @param id 对接三方平台配置主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteThirdpartySecretInfoById(Long id);
|
||||
int deleteThirdpartySecretInfoById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除对接三方平台配置
|
||||
*
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteThirdpartySecretInfoByIds(Long[] ids);
|
||||
int deleteThirdpartySecretInfoByIds(Long[] ids);
|
||||
|
||||
ThirdPartySecretInfoVO queryByOperatorId(String theirOperatorId);
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
package com.jsowell.thirdparty.service;
|
||||
|
||||
import com.jsowell.pile.vo.ThirdPartySecretInfoVO;
|
||||
import com.jsowell.thirdparty.domain.ThirdpartySecretInfo;
|
||||
|
||||
import java.util.List;
|
||||
@@ -58,4 +59,6 @@ public interface ThirdpartySecretInfoService {
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteThirdpartySecretInfoById(Long id);
|
||||
|
||||
ThirdPartySecretInfoVO queryByOperatorId(String theirOperatorId);
|
||||
}
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
package com.jsowell.thirdparty.service.impl;
|
||||
|
||||
import com.jsowell.common.util.DateUtils;
|
||||
import com.jsowell.pile.vo.ThirdPartySecretInfoVO;
|
||||
import com.jsowell.thirdparty.domain.ThirdpartySecretInfo;
|
||||
import com.jsowell.thirdparty.mapper.ThirdpartySecretInfoMapper;
|
||||
import com.jsowell.thirdparty.service.ThirdpartySecretInfoService;
|
||||
@@ -87,4 +88,14 @@ public class ThirdpartySecretInfoServiceImpl implements ThirdpartySecretInfoServ
|
||||
public int deleteThirdpartySecretInfoById(Long id) {
|
||||
return thirdpartySecretInfoMapper.deleteThirdpartySecretInfoById(id);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询第三方平台密钥配置信息
|
||||
* @param theirOperatorId 第三方平台的组织结构代码
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public ThirdPartySecretInfoVO queryByOperatorId(String theirOperatorId) {
|
||||
return thirdpartySecretInfoMapper.queryByOperatorId(theirOperatorId);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.jsowell.thirdparty.mapper.ThirdpartySecretInfoMapper">
|
||||
|
||||
<resultMap type="ThirdpartySecretInfo" id="ThirdpartySecretInfoResult">
|
||||
<resultMap type="com.jsowell.thirdparty.domain.ThirdpartySecretInfo" id="ThirdpartySecretInfoResult">
|
||||
<result property="id" column="id" />
|
||||
<result property="platformName" column="platform_name" />
|
||||
<result property="platformType" column="platform_type" />
|
||||
@@ -12,7 +12,7 @@
|
||||
<result property="theirOperatorId" column="their_operator_id" />
|
||||
<result property="theirOperatorSecret" column="their_operator_secret" />
|
||||
<result property="theirDataSecret" column="their_data_secret" />
|
||||
<result property="theirDataSecretIv" column="their_data_secret_Iv" />
|
||||
<result property="theirDataSecretIv" column="their_data_secret_iv" />
|
||||
<result property="theirSigSecret" column="their_sig_secret" />
|
||||
<result property="ourOperatorSecret" column="our_operator_secret" />
|
||||
<result property="ourDataSecret" column="our_data_secret" />
|
||||
@@ -25,11 +25,18 @@
|
||||
<result property="delFlag" column="del_flag" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectThirdpartySecretInfoVo">
|
||||
select id, platform_name, platform_type, url_prefix, their_operator_id, their_operator_secret, their_data_secret, their_data_secret_Iv, their_sig_secret, our_operator_secret, our_data_secret, our_data_secret_iv, our_sig_secret, create_by, create_time, update_by, update_time, del_flag from thirdparty_secret_info
|
||||
<sql id="Base_Column_List">
|
||||
id, platform_name, platform_type, url_prefix, their_operator_id, their_operator_secret, their_data_secret,
|
||||
their_data_secret_iv, their_sig_secret, our_operator_secret, our_data_secret, our_data_secret_iv,
|
||||
our_sig_secret, create_by, create_time, update_by, update_time, del_flag
|
||||
</sql>
|
||||
|
||||
<select id="selectThirdpartySecretInfoList" parameterType="ThirdpartySecretInfo" resultMap="ThirdpartySecretInfoResult">
|
||||
<sql id="selectThirdpartySecretInfoVo">
|
||||
select <include refid="Base_Column_List"/>
|
||||
from thirdparty_secret_info
|
||||
</sql>
|
||||
|
||||
<select id="selectThirdpartySecretInfoList" parameterType="com.jsowell.thirdparty.domain.ThirdpartySecretInfo" resultMap="ThirdpartySecretInfoResult">
|
||||
<include refid="selectThirdpartySecretInfoVo"/>
|
||||
<where>
|
||||
<if test="platformName != null and platformName != ''"> and platform_name like concat('%', #{platformName}, '%')</if>
|
||||
@@ -38,7 +45,7 @@
|
||||
<if test="theirOperatorId != null and theirOperatorId != ''"> and their_operator_id = #{theirOperatorId}</if>
|
||||
<if test="theirOperatorSecret != null and theirOperatorSecret != ''"> and their_operator_secret = #{theirOperatorSecret}</if>
|
||||
<if test="theirDataSecret != null and theirDataSecret != ''"> and their_data_secret = #{theirDataSecret}</if>
|
||||
<if test="theirDataSecretIv != null and theirDataSecretIv != ''"> and their_data_secret_Iv = #{theirDataSecretIv}</if>
|
||||
<if test="theirDataSecretIv != null and theirDataSecretIv != ''"> and their_data_secret_iv = #{theirDataSecretIv}</if>
|
||||
<if test="theirSigSecret != null and theirSigSecret != ''"> and their_sig_secret = #{theirSigSecret}</if>
|
||||
<if test="ourOperatorSecret != null and ourOperatorSecret != ''"> and our_operator_secret = #{ourOperatorSecret}</if>
|
||||
<if test="ourDataSecret != null and ourDataSecret != ''"> and our_data_secret = #{ourDataSecret}</if>
|
||||
@@ -52,7 +59,7 @@
|
||||
where id = #{id}
|
||||
</select>
|
||||
|
||||
<insert id="insertThirdpartySecretInfo" parameterType="ThirdpartySecretInfo" useGeneratedKeys="true" keyProperty="id">
|
||||
<insert id="insertThirdpartySecretInfo" parameterType="com.jsowell.thirdparty.domain.ThirdpartySecretInfo" useGeneratedKeys="true" keyProperty="id">
|
||||
insert into thirdparty_secret_info
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="platformName != null">platform_name,</if>
|
||||
@@ -61,7 +68,7 @@
|
||||
<if test="theirOperatorId != null">their_operator_id,</if>
|
||||
<if test="theirOperatorSecret != null">their_operator_secret,</if>
|
||||
<if test="theirDataSecret != null">their_data_secret,</if>
|
||||
<if test="theirDataSecretIv != null">their_data_secret_Iv,</if>
|
||||
<if test="theirDataSecretIv != null">their_data_secret_iv,</if>
|
||||
<if test="theirSigSecret != null">their_sig_secret,</if>
|
||||
<if test="ourOperatorSecret != null">our_operator_secret,</if>
|
||||
<if test="ourDataSecret != null">our_data_secret,</if>
|
||||
@@ -94,7 +101,7 @@
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateThirdpartySecretInfo" parameterType="ThirdpartySecretInfo">
|
||||
<update id="updateThirdpartySecretInfo" parameterType="com.jsowell.thirdparty.domain.ThirdpartySecretInfo">
|
||||
update thirdparty_secret_info
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="platformName != null">platform_name = #{platformName},</if>
|
||||
@@ -103,7 +110,7 @@
|
||||
<if test="theirOperatorId != null">their_operator_id = #{theirOperatorId},</if>
|
||||
<if test="theirOperatorSecret != null">their_operator_secret = #{theirOperatorSecret},</if>
|
||||
<if test="theirDataSecret != null">their_data_secret = #{theirDataSecret},</if>
|
||||
<if test="theirDataSecretIv != null">their_data_secret_Iv = #{theirDataSecretIv},</if>
|
||||
<if test="theirDataSecretIv != null">their_data_secret_iv = #{theirDataSecretIv},</if>
|
||||
<if test="theirSigSecret != null">their_sig_secret = #{theirSigSecret},</if>
|
||||
<if test="ourOperatorSecret != null">our_operator_secret = #{ourOperatorSecret},</if>
|
||||
<if test="ourDataSecret != null">our_data_secret = #{ourDataSecret},</if>
|
||||
@@ -128,4 +135,21 @@
|
||||
#{id}
|
||||
</foreach>
|
||||
</delete>
|
||||
|
||||
<select id="queryByOperatorId" resultType="com.jsowell.pile.vo.ThirdPartySecretInfoVO">
|
||||
select
|
||||
t1.their_operator_id as theirOperatorId,
|
||||
t1.their_operator_secret as theirOperatorSecret,
|
||||
t1.their_data_secret as theirDataSecret,
|
||||
t1.their_data_secret_iv as theirDataSecretIv,
|
||||
t1.their_sig_secret as theirSigSecret,
|
||||
t1.url_prefix as theirUrlPrefix,
|
||||
t1.our_operator_secret as ourOperatorSecret,
|
||||
t1.our_data_secret as ourDataSecret,
|
||||
t1.our_data_secret_iv as ourDataSecretIv,
|
||||
t1.our_sig_secret as ourSigSecret
|
||||
from thirdparty_secret_info t1
|
||||
where del_flag = '0'
|
||||
and their_operator_id = #{theirOperatorId,jdbcType=VARCHAR}
|
||||
</select>
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user