支付宝认证,切换支付通道新逻辑,后台切换列表,推广三张图详情,关闭向充值服务请求,

This commit is contained in:
liuyingfang
2023-07-01 11:53:01 +08:00
parent 69049951c3
commit 8e0583b460
17 changed files with 617 additions and 77 deletions

View File

@@ -74,4 +74,19 @@
WHERE channel = 4 AND `status` = 3 AND (extra ->> '$.sysFlowId') = #{sysFlowId}
</select>
<select id="pageDate" parameterType="java.lang.Integer" resultType="cn.pluss.platform.vo.merchantChannelVO">
SELECT mcs.merchantCode,
mcs.valid,
mcs.status,
mcs.updateTime,
mcs.virChannelFlag,
mcs.channel,
ba.merchantName,
ba.contactName,
ba.alias
from tb_pluss_merchant_channel_status mcs
LEFT JOIN tb_pluss_merchant_base_info ba ON mcs.merchantCode = ba.merchantCode
WHERE mcs.`valid` = -1
order by mcs.id desc limit #{pageSize} offset #{offset};
</select>
</mapper>