<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
>
<channel>
<title><![CDATA[接口地址]]></title> 
<atom:link href="https://api.dianlaibaopay.com/rss.php" rel="self" type="application/rss+xml" />
<description><![CDATA[支付网关]]></description>
<link>https://api.dianlaibaopay.com/</link>
<language>zh-cn</language>

<item>
    <title>支付托管</title>
    <link>https://api.dianlaibaopay.com/?post=21</link>
    <description><![CDATA[<h1>一、产品介绍</h1>
<p>计全付提供的托管支付产品，旨在解决在APP、小程序和H5等终端环境中，通过微信和支付宝完成支付的需求。</p>
<p>在正式接入之前，请先查看我们的真实视频演示效果，帮助您判断是否进行对接。需要特别注意的是，在APP场景下，只有通过微信SDK方式完成支付后，才能返回至APP。支付宝及其他支付方式则无法实现此功能。因此，在注重用户体验的情况下，请谨慎选择支付方式。</p>
<h1>二、支付场景</h1>
<p>您可以通过调用【统一支付下单】接口来下单，支付方式（wayCode）字段传递：TG_PAY，同时根据不同支付方式传递相应的渠道参数（channelExtra）。具体如下：</p>
<table>
<thead>
<tr>
<th>字段名</th>
<th>变量名</th>
<th>必填</th>
<th>类型</th>
<th>示例值</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td>支付方式</td>
<td>userPayType</td>
<td>是</td>
<td>String(30)</td>
<td>wx</td>
<td>支付方式：wx - 微信， zfb - 支付宝</td>
</tr>
<tr>
<td>调起方式</td>
<td>invokeType</td>
<td>是</td>
<td>String(30)</td>
<td>app2lite</td>
<td>app2lite：sdk调用方式， 返回调起小程序所需参数。支持 wx、zfb；h52lite：h5跳小程序支付，返回跳转url地址。支持 wx、zfb；h52jsapi：h5跳支付宝内浏览器打开网页收银台支付，返回跳转url地址。支持 zfb；h52qr：h5跳支付宝内打开当面付收银台支付，返回跳转url地址。支持 zfb；lite2lite：小程序跳转小程序支付，返回跳转小程序所需参数。支持 wx、zfb</td>
</tr>
</tbody>
</table>
<h2>1. APP支付</h2>
<h3>1.1 APP跳转微信小程序SDK</h3>
<p>此方案允许APP跳转至微信小程序进行支付，支付后可以返回至APP。通过调用计全付托管支付接口，返回用于打开微信小程序的SDK参数。需要在微信官方申请移动应用，并根据微信SDK文档实现小程序跳转。</p>
<p>渠道参数（channelExtra）：{ &quot;userPayType&quot;: &quot;wx&quot;, &quot;invokeType&quot;：&quot;app2lite&quot;}</p>
<p>返回参数（payData）：</p>
<pre><code class="language-json">{
    "path": "pages/hub/lite",
    "qrUrl": "https://pay.yintongzaixian.com/cashier/pages/hub/h5/?jeepayToken=8d6f6088eaf746d2157aa14c142d96ba0cea998014adefc56f841d31998e5a5d59bb32e81e898e9f309d072824220eb7",
    "appid": "wxfaff9394a9a745f0",
    "ghid": "gh_5ea8094c2d68",
    "env": "release"
}</code></pre>
<table>
<thead>
<tr>
<th>参数</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td>path</td>
<td>跳转到微信小程序的具体路径</td>
</tr>
<tr>
<td>qrUrl</td>
<td>二维码链接，支付过程中附加在路径后</td>
</tr>
<tr>
<td>appid</td>
<td>目标小程序的appid</td>
</tr>
<tr>
<td>ghid</td>
<td>微信小程序的原始ID</td>
</tr>
<tr>
<td>env</td>
<td>微信小程序的版本，release - 正式版；test - 开发版；preview - 体验版</td>
</tr>
</tbody>
</table>
<p>APP端拉起微信小程序，可以参见微信官方文档：APP拉起微信小程序说明。</p>
<p>以下为uniapp拉起微信小程序示例代码：</p>
<pre><code class="language-javascript">export function sdkOepnWeiChatLite(val) {
    const envObj = {
        release: 0,
        test: 1,
        preview: 2
    }
    // #ifdef APP-PLUS
    plus.share.getServices(
        (data) =&gt; {
            let sweixin = null;
            data.forEach(item =&gt; {
                if (item.id === "weixin") {
                    sweixin = item
                }
            })
            if (sweixin) {
                // 跳转到微信小程序
                sweixin.launchMiniProgram({
                    id: val.ghid, //微信小程序原始id
                    path: val.path + (val.qrUrl ? '?q=' + encodeURIComponent(val.qrUrl) : ''),
                    // 可取值：0-正式版； 1-测试版； 2-体验版。默认值为0。
                    type:  envObj[val.env] || 0,  // 微信小程序版本类型，
                });
            } else {
                uni.showToast({
                    title: "请安装微信",
                    icon: "none",
                });
            }
        },
        (err) =&gt; {
            console.log("跳转失败");
        }
    );
    // #endif
}</code></pre>
<h3>1.2 APP跳转微信小程序H5</h3>
<p>此方案适用于APP跳转至微信小程序支付后，无法返回至APP的场景。调用计全付托管支付接口后，返回一个跳转地址。APP端可以通过web-view打开该地址，随后跳转至微信小程序完成支付。</p>
<p>渠道参数（channelExtra）：{ &quot;userPayType&quot;: &quot;wx&quot;, &quot;invokeType&quot;：&quot;h52lite&quot;}</p>
<p>返回参数（payData）：</p>
<pre><code class="language-json">"payData": "weixin://dl/business/?appid=wxfaff9394a9a745f0&amp;path=pages/hub/lite&amp;query=q%3Dhttps%3A%2F%2Fpay.yintongzaixian.com%2Fcashier%2Fpages%2Fhub%2Fh5%2F%3FjeepayToken%3D8d6f6088eaf746d2157aa14c142d96baa70f6b4303fd9e84ce8bfbe63e8271d86d7caa07a50cb3b2cb06681d07d1dfeb&amp;env_version=release"</code></pre>
<h3>1.3 APP跳转支付宝小程序SDK</h3>
<p>此方案允许APP跳转至支付宝小程序进行支付，但无法返回至APP。调用计全付托管支付接口后，会返回用于打开支付宝小程序的参数。</p>
<p>渠道参数（channelExtra）：{ &quot;userPayType&quot;: &quot;zfb&quot;, &quot;invokeType&quot;：&quot;app2lite&quot;}</p>
<p>返回参数（payData）：</p>
<pre><code class="language-json">{
    "path": "pages/hub/lite",
    "qrUrl": "https://pay.yintongzaixian.com/cashier/pages/hub/h5/?jeepayToken=8d6f6088eaf746d2157aa14c142d96ba76abfcbb3efb20c10c9a16105f6c1274e0e2a737c2824c40b21eb95f70e02e19",
    "appid": "2021002172669744",
    "alipays": "alipays://platformapi/startapp?appId=2021002172669744&amp;page=pages/hub/lite&amp;query=qrCode=https://pay.yintongzaixian.com/cashier/pages/hub/h5/?jeepayToken=8d6f6088eaf746d2157aa14c142d96baea03c39661283761d19ffeded32087c5d7049370b4849b44f5259ff61bbbe7d2"
}</code></pre>
<table>
<thead>
<tr>
<th>参数</th>
<th>是否必填</th>
<th>参数描述</th>
</tr>
</thead>
<tbody>
<tr>
<td>path</td>
<td>N</td>
<td>跳转到支付宝小程序的具体路径</td>
</tr>
<tr>
<td>qrUrl</td>
<td>N</td>
<td>二维码链接</td>
</tr>
<tr>
<td>appid</td>
<td>N</td>
<td>跳转到目标小程序的appid</td>
</tr>
<tr>
<td>alipays</td>
<td>Y</td>
<td>跳转支付宝的地址，直接使用该地址即可跳转至支付宝小程序</td>
</tr>
</tbody>
</table>
<p>从返回的payData参数中取得alipays，APP端通过web-view打开该地址，然后跳转至支付宝小程序完成支付。</p>
<h3>1.4 APP跳转支付宝小程序H5</h3>
<p>此方案适用于APP跳转至支付宝支付后，无法返回至APP的场景。通过计全付托管支付接口返回跳转地址，APP端通过web-view打开该地址，然后跳转至支付宝小程序完成支付。</p>
<p>渠道参数（channelExtra）：{ &quot;userPayType&quot;: &quot;zfb&quot;, &quot;invokeType&quot;：&quot;h52lite&quot;}</p>
<p>返回参数（payData）：</p>
<pre><code class="language-json">"payData": "alipays://platformapi/startapp?appId=2021002172669744&amp;page=pages/hub/lite&amp;query=qrCode=https://pay.yintongzaixian.com/cashier/pages/hub/h5/?jeepayToken=8d6f6088eaf746d2157aa14c142d96baea03c39661283761d19ffeded32087c5d7049370b4849b44f5259ff61bbbe7d2"</code></pre>
<h3>1.5 APP跳转支付宝JSAPI</h3>
<p>此方案适用于APP跳转至支付宝支付后，无法返回至APP的场景。通过计全付托管支付接口返回跳转地址，APP端通过web-view打开该地址，再跳转至支付宝浏览器完成支付。</p>
<p>渠道参数（channelExtra）：{ &quot;userPayType&quot;: &quot;zfb&quot;, &quot;invokeType&quot;：&quot;h52jsapi&quot;}</p>
<p>返回参数（payData）：</p>
<pre><code class="language-json">"payData": "alipays://platformapi/startapp?appId=2021002172669744&amp;page=pages/hub/lite&amp;query=qrCode=https://pay.yintongzaixian.com/cashier/pages/hub/h5/?jeepayToken=8d6f6088eaf746d2157aa14c142d96baea03c39661283761d19ffeded32087c5d7049370b4849b44f5259ff61bbbe7d2"</code></pre>
<h3>1.6 APP跳转支付宝当面付</h3>
<p>此方案适用于APP跳转至支付宝支付后，点击返回商家或完成按钮时返回至APP的场景。通过店来宝托管支付接口返回跳转地址，APP端通过web-view打开该地址，再跳转至支付宝完成支付。</p>
<p>渠道参数（channelExtra）：{ &quot;userPayType&quot;: &quot;zfb&quot;, &quot;invokeType&quot;：&quot;h52qr&quot;}</p>
<p>返回参数（payData）：</p>
<pre><code class="language-json">"payData": "alipays://platformapi/startapp?saId=10000007&amp;clientVersion=3.7.0.0718&amp;qrcode=https%3A%2F%2Fqr.alipay.com%2Fbax08006ghwweuiramsr30fc?_s=web-other"</code></pre>
<h1>2. 小程序支付</h1>
<h3>2.1 微信小程序转小程序</h3>
<p>通过店来宝托管支付接口，返回小程序跳转参数，实现微信小程序间的跳转支付。</p>
<p>渠道参数（channelExtra）：{ &quot;userPayType&quot;: &quot;wx&quot;, &quot;invokeType&quot;：&quot;lite2lite&quot;}</p>
<p>返回参数（payData）：</p>
<pre><code class="language-json">{
    "path": "pages/hub/lite",
    "qrUrl": "https://pay.yintongzaixian.com/cashier/pages/hub/h5/?jeepayToken=8d6f6088eaf746d2157aa14c142d96ba139b1fa377ec64723a21bbf30943718f59f857008618865f754157dc75904667",
    "appid": "wxfaff9394a9a745f0",
    "ghid": "gh_5ea8094c2d68",
    "env": "release"
}</code></pre>
<table>
<thead>
<tr>
<th>参数</th>
<th>参数描述</th>
</tr>
</thead>
<tbody>
<tr>
<td>path</td>
<td>跳转到微信小程序的具体路径</td>
</tr>
<tr>
<td>qrUrl</td>
<td>二维码链接，会作为查询参数附加在路径后面</td>
</tr>
<tr>
<td>appid</td>
<td>跳转到目标小程序的appid</td>
</tr>
<tr>
<td>ghid</td>
<td>微信小程序原始ID</td>
</tr>
<tr>
<td>env</td>
<td>微信小程序版本，release - 正式、develop - 开发、 trial - 体验</td>
</tr>
</tbody>
</table>
<h3>2.2 支付宝小程序转小程序</h3>
<p>通过店来宝托管支付接口，返回支付宝小程序跳转所需参数，实现支付宝小程序间的跳转支付。</p>
<p>渠道参数（channelExtra）：{ &quot;userPayType&quot;: &quot;zfb&quot;, &quot;invokeType&quot;：&quot;lite2lite&quot;}</p>
<p>返回参数（payData）：</p>
<pre><code class="language-json">{
    "path": "pages/hub/lite",
    "qrUrl": "https://pay.yintongzaixian.com/cashier/pages/hub/h5/?jeepayToken=8d6f6088eaf746d2157aa14c142d96ba139b1fa377ec64723a21bbf30943718f59f857008618865f754157dc75904667",
    "appid": "2021002172669744"
}</code></pre>
<table>
<thead>
<tr>
<th>参数</th>
<th>参数描述</th>
</tr>
</thead>
<tbody>
<tr>
<td>path</td>
<td>跳转到支付宝小程序的具体路径</td>
</tr>
<tr>
<td>qrUrl</td>
<td>二维码链接，会作为查询参数附加在路径后面</td>
</tr>
<tr>
<td>appid</td>
<td>跳转到目标小程序的appid</td>
</tr>
</tbody>
</table>
<h1>3. H5支付</h1>
<h3>3.1 H5跳转至微信小程序</h3>
<p>在H5场景下，通过调用店来宝托管支付接口，返回一个跳转地址。H5端通过window.location.href = url的方式打开该地址，随后跳转至微信小程序完成支付。</p>
<p>渠道参数（channelExtra）：{ &quot;userPayType&quot;: &quot;wx&quot;, &quot;invokeType&quot;：&quot;h52lite&quot;}</p>
<p>返回参数（payData）：</p>
<pre><code class="language-json">"payData": "weixin://dl/business/?appid=wxfaff9394a9a745f0&amp;path=pages/hub/lite&amp;query=q%3Dhttps%3A%2F%2Fpay.yintongzaixian.com%2Fcashier%2Fpages%2Fhub%2Fh5%2F%3FjeepayToken%3D8d6f6088eaf746d2157aa14c142d96baa70f6b4303fd9e84ce8bfbe63e8271d86d7caa07a50cb3b2cb06681d07d1dfeb&amp;env_version=release"</code></pre>
<h3>3.2 H5跳转至支付宝小程序</h3>
<p>通过调用店来宝托管支付接口，返回跳转支付宝小程序的地址，H5端通过window.location.href = url的方式打开该地址，随后跳转至支付宝小程序完成支付。</p>
<p>渠道参数（channelExtra）：{ &quot;userPayType&quot;: &quot;zfb&quot;, &quot;invokeType&quot;：&quot;h52lite&quot;}</p>
<p>返回参数（payData）：</p>
<pre><code class="language-json">"payData": "alipays://platformapi/startapp?appId=2021002172669744&amp;page=pages/hub/lite&amp;query=qrCode=https://pay.yintongzaixian.com/cashier/pages/hub/h5/?jeepayToken=8d6f6088eaf746d2157aa14c142d96baea03c39661283761d19ffeded32087c5d7049370b4849b44f5259ff61bbbe7d2"</code></pre>
<h3>3.3 H5跳转至支付宝JSAPI</h3>
<p>通过调用店来宝托管支付接口，返回跳转支付宝浏览器的地址，H5端通过window.location.href = url的方式打开该地址，随后跳转至支付宝浏览器进行支付。</p>
<p>渠道参数（channelExtra）：{ &quot;userPayType&quot;: &quot;zfb&quot;, &quot;invokeType&quot;：&quot;h52jsapi&quot;}</p>
<p>返回参数（payData）：</p>
<pre><code class="language-json">"payData": "alipays://platformapi/startapp?appId=2021002172669744&amp;page=pages/hub/lite&amp;query=qrCode=https://pay.yintongzaixian.com/cashier/pages/hub/h5/?jeepayToken=8d6f6088eaf746d2157aa14c142d96baea03c39661283761d19ffeded32087c5d7049370b4849b44f5259ff61bbbe7d2"</code></pre>
<h3>3.4 H5跳转至支付宝当面付</h3>
<p>通过调用计全付托管支付接口，返回跳转支付宝当面付的地址，H5端通过window.location.href = url的方式打开该地址，随后跳转至支付宝浏览器进行支付。</p>
<p>渠道参数（channelExtra）：{ &quot;userPayType&quot;: &quot;zfb&quot;, &quot;invokeType&quot;：&quot;h52qr&quot;}</p>
<p>返回参数（payData）：</p>
<pre><code class="language-json">"payData": "alipays://platformapi/startapp?saId=10000007&amp;clientVersion=3.7.0.0718&amp;qrcode=https%3A%2F%2Fqr.alipay.com%2Fbax08006ghwweuiramsr30fc?_s=web-other"</code></pre>
<h1>三、支付插件</h1>
<p>店来宝官方团队在DCloud插件市场发布了jeepay-uni-pay支付插件，方便用户快速接入店来宝。</p>
<h1>四、相关知识</h1>
<h3>1. 支付宝Schema介绍</h3>
<p>支付宝小程序可以通过Schema URL方式打开，常用格式如下：</p>
<pre><code class="language-json">alipays://platformapi/startapp?appId=APPID&amp;page=PAGE&amp;query=QUERY</code></pre>
<table>
<thead>
<tr>
<th>支付宝还支持通过saId参数调用内置功能，常见的saId参数包括：</th>
<th>saId</th>
<th>功能说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>10000007</td>
<td>扫一扫功能</td>
</tr>
<tr>
<td>20000123</td>
<td>收款功能</td>
</tr>
<tr>
<td>20000056</td>
<td>转账功能</td>
</tr>
<tr>
<td>88886666</td>
<td>发红包功能</td>
</tr>
</tbody>
</table>]]></description>
    <pubDate>Fri, 05 Jun 2026 13:44:35 +0800</pubDate>
    <dc:creator>emer</dc:creator>
    <guid>https://api.dianlaibaopay.com/?post=21</guid>
</item>
<item>
    <title>发起订单分账</title>
    <link>https://api.dianlaibaopay.com/?post=51</link>
    <description><![CDATA[<h1>接口说明</h1>
<p>接口描述：当订单下单时传入的分账模式 divisionMode = 2商户手动分账(解冻商户金额)，支持商户手动发起订单分账。<br />
注意：需要在订单支付完成后（建议1分钟后）调用分账接口。</p>
<p>适用对象：普通商户 特约商户</p>
<p>请求URL：<a href="https://pay.yintongzaixian.com/api/division/receiver/bind">https://pay.yintongzaixian.com/api/division/receiver/bind</a></p>
<p>请求方式：POST</p>
<p>请求类型：application/json 或 application/x-www-form-urlencoded</p>
<h1>请求参数</h1>]]></description>
    <pubDate>Thu, 04 Jun 2026 13:45:40 +0800</pubDate>
    <dc:creator>emer</dc:creator>
    <guid>https://api.dianlaibaopay.com/?post=51</guid>
</item>
<item>
    <title>技术规范</title>
    <link>https://api.dianlaibaopay.com/?post=19</link>
    <description><![CDATA[<h1>协议规则</h1>
<p>传输方式：采用HTTP传输<br />
提交方式：POST 或 GET<br />
内容类型：application/json<br />
字符编码：UTF-8<br />
签名算法：MD5</p>
<h1>参数规范</h1>
<p>交易金额：默认为人民币交易，单位为分，参数值不能带小数。<br />
时间参数：所有涉及时间参数均使用精确到毫秒的13位数值，如：1622016572190。时间戳具体是指从格林尼治时间1970年01月01日00时00分00秒起至现在的毫秒数。</p>
<h1>签名算法</h1>
<p>签名生成的通用步骤如下</p>
<p>第一步： 设所有发送或者接收到的数据为集合M，将集合M内非空参数值的参数按照参数名ASCII码从小到大排序（字典序），使用URL键值对的格式（即key1=value1&amp;key2=value2…）拼接成字符串stringA。<br />
特别注意以下重要规则：<br />
◆ 参数名ASCII码从小到大排序（字典序）；<br />
◆ 如果参数的值为空不参与签名；<br />
◆ 参数名区分大小写；<br />
◆ 验证调用返回或支付中心主动通知签名时，传送的sign参数不参与签名，将生成的签名与该sign值作校验。<br />
◆ 支付中心接口可能增加字段，验证签名时必须支持增加的扩展字段</p>
<p>第二步： 在stringA最后拼接上key[即 StringA +&quot;&amp;key=&quot; + 私钥 ] 得到stringSignTemp字符串，并对stringSignTemp进行MD5运算，再将得到的字符串所有字符转换为大写，得到sign值signValue。</p>
<p>如请求支付系统参数如下：</p>
<pre><code class="language-java">Map&lt;String, Object&gt; paramsMap = new HashMap&lt;&gt;();
        paramsMap.put("mchNo", "M1682391685");                   // 商户号
        paramsMap.put("appId", "6447428682ca7458118af79f");      // 应用ID
        paramsMap.put("mchOrderNo", "mho1694051705945");         // 商户订单号
        paramsMap.put("wayCode", "ALI_BAR");                     // 支付方式
        paramsMap.put("amount", 1L);                             // 金额，单位分
        paramsMap.put("currency", "CNY");                        // 币种，目前只支持cny
        paramsMap.put("clientIp", "192.166.1.132");              // 发起支付请求客户端的IP地址
        paramsMap.put("subject", "商品标题");                     // 商品标题
        paramsMap.put("body", "商品描述");                        // 商品描述
        paramsMap.put("notifyUrl", "https://www.jeequan.com");   // 异步通知地址
        paramsMap.put("reqTime", "1694051706");                // 请求时间
        paramsMap.put("version", "1.0");                     // 接口版本号，固定：1.0
        paramsMap.put("signType", "MD5");                       // 签名类型
        paramsMap.put("channelExtra", "{\"authCode\":\"284957415846666792\"}");  // 渠道参数</code></pre>
<p>待签名值：<br />
amount=1&amp;appId=6447428682ca7458118af79f&amp;body=商品描述&amp;channelExtra={&quot;authCode&quot;:&quot;284957415846666792&quot;}&amp;clientIp=192.166.1.132&amp;currency=CNY&amp;mchNo=M1682391685&amp;mchOrderNo=mho1694051705945&amp;notifyUrl=<a href="https://www.jeequan.com&amp;reqTime=1694051706&amp;signType=MD5&amp;subject=商品标题&amp;version=1.0&amp;wayCode=ALI_BAR&amp;key=UNpEETkvMpqC9oDLBr9S2X7U92k462h3zhHiy7hj4xbw23PiWhMv6TCAQ2vh8PzynZXZYo9n6puxHkAHG7li6LZi8IpaQrshzydnBll64iKlb4U59ggiyCTaHJeqffiW">https://www.jeequan.com&amp;reqTime=1694051706&amp;signType=MD5&amp;subject=商品标题&amp;version=1.0&amp;wayCode=ALI_BAR&amp;key=UNpEETkvMpqC9oDLBr9S2X7U92k462h3zhHiy7hj4xbw23PiWhMv6TCAQ2vh8PzynZXZYo9n6puxHkAHG7li6LZi8IpaQrshzydnBll64iKlb4U59ggiyCTaHJeqffiW</a></p>
<p>签名结果：924065BA077FA461A9B06D2E76E9ED3C</p>
<p>最终请求支付系统参数：<br />
{&quot;amount&quot;:1,&quot;mchOrderNo&quot;:&quot;mho1694051705945&quot;,&quot;subject&quot;:&quot;商品标题&quot;,&quot;wayCode&quot;:&quot;ALI_BAR&quot;,&quot;sign&quot;:&quot;924065BA077FA461A9B06D2E76E9ED3C&quot;,&quot;reqTime&quot;:&quot;1694051706&quot;,&quot;body&quot;:&quot;商品描述&quot;,&quot;version&quot;:&quot;1.0&quot;,&quot;channelExtra&quot;:&quot;{&quot;authCode&quot;:&quot;284957415846666792&quot;}&quot;,&quot;appId&quot;:&quot;6447428682ca7458118af79f&quot;,&quot;clientIp&quot;:&quot;192.166.1.132&quot;,&quot;notifyUrl&quot;:&quot;<a href="https://www.jeequan.com&quot;,&quot;signType&quot;:&quot;MD5&quot;,&quot;currency&quot;:&quot;CNY&quot;,&quot;mchNo&quot;:&quot;M1682391685">https://www.jeequan.com","signType":"MD5","currency":"CNY","mchNo":"M1682391685</a>&quot;}</p>
<blockquote>
<p>运营管理平台可以管理商户的私钥</p>
<h1>SDK调用示例（java）</h1>
<p>初始化配置：</p>
<pre><code class="language-java">Jeepay.setApiBase("https://pay.jeepay.vip/");
Jeepay.apiKey  =  "your_api_key";
Jeepay.mchNo  =  "your_mch_no";
Jeepay.appId  =  "your_app_id";
Jeepay.agentNo  =  "your_agent_no";  // 可选，代理商接口时使用</code></pre>
<p>调用模板：</p>
<pre><code class="language-java">// 1. 创建客户端实例
JeepayClient jeepayClient = JeepayClient.getInstance(Jeepay.appId, Jeepay.apiKey, Jeepay.getApiBase());
// 2. 创建请求和模型对象
XxxRequest request = new XxxRequest();
XxxReqModel model = new XxxReqModel();
// 3. 设置基础参数
model.setMchNo(Jeepay.mchNo); // 商户号
model.setAppId(jeepayClient.getAppId()); // 应用ID
// 4. 设置业务参数
// ... 根据接口要求设置其他参数
// 5. 执行请求
request.setBizModel(model);
try {
XxxResponse response = jeepayClient.execute(request);// MD5签名请求
_log.info("验签结果: {}", response.checkSign(Jeepay.apiKey));// MD5验签
// XxxResponse response = jeepayClient.executeByRSA2(request);// RSA2签名请求
// _log.info("验签结果: {}", response.checkSignByRsa2(Jeepay.apiRsa2Key));// RSA2验签
if (response.isSuccess(Jeepay.apiKey)) {
_log.info("data: {}", response.getData());
} else {
_log.info("请求失败: mchNo={}, msg={}", Jeepay.mchNo, response.getMsg());
}
} catch (JeepayException e) {
_log.error(e.getMessage());
}</code></pre>
</blockquote>]]></description>
    <pubDate>Thu, 04 Jun 2026 11:51:37 +0800</pubDate>
    <dc:creator>emer</dc:creator>
    <guid>https://api.dianlaibaopay.com/?post=19</guid>
</item>
<item>
    <title>对接说明</title>
    <link>https://api.dianlaibaopay.com/?post=18</link>
    <description><![CDATA[<h1>接口对接</h1>
<p>可使用sdk对接，参考：<a href="https://api.dianlaibaopay.com/">https://api.dianlaibaopay.com/</a></p>
<h1>App支付demo</h1>
<p>uniapp开发demo：<a href="http://jeequan.oss-cn-beijing.aliyuncs.com/jeepay/app/demo/jeepay-uapp-demo_v1.1.0.zip">http://jeequan.oss-cn-beijing.aliyuncs.com/jeepay/app/demo/jeepay-uapp-demo_v1.1.0.zip</a></p>
<p>android开发demo：<a href="http://jeequan.oss-cn-beijing.aliyuncs.com/jeepay/app/demo/jeepay-app-demo_v1.1.0.zip">http://jeequan.oss-cn-beijing.aliyuncs.com/jeepay/app/demo/jeepay-app-demo_v1.1.0.zip</a></p>
<h1>接口联调账号</h1>
<p>接口签名支持MD5(推荐使用)和RSA2两种方式，业务对接方可根据自身业务选择对接。</p>
<p>说明：使用RSA2对接，再接收异步通知时，仍使用MD5类型验签。</p>
<p>如何查看自己的对接参数信息，登录商户系统（<a href="https://mch.yintongzaixian.com">https://mch.yintongzaixian.com</a>） ，进入【商户中心】。</p>
<p>1.进入【商户信息】可查看商户号。<br />
2.进入【应用管理】可查看应用appid，进入列表中的【更多】- 【签名配置】，可查看或修改私钥信息。<br />
3.正式环境网关地址为：<a href="https://pay.yintongzaixian.com">https://pay.yintongzaixian.com</a></p>
<h1>问题咨询</h1>
<p>如果对接有任何问题，请联系18645819599（同微信），可拉技术对接群沟通（需收对接费用）。</p>]]></description>
    <pubDate>Thu, 04 Jun 2026 11:35:22 +0800</pubDate>
    <dc:creator>emer</dc:creator>
    <guid>https://api.dianlaibaopay.com/?post=18</guid>
</item>
<item>
    <title>订单分账查询</title>
    <link>https://api.dianlaibaopay.com/?post=52</link>
    <description><![CDATA[<h1>接口说明</h1>
<p>接口描述：订单分账结果的查询。</p>
<p>适用对象：普通商户 特约商户</p>
<p>请求URL：<a href="https://pay.yintongzaixian.com/api/division/receiver/bind">https://pay.yintongzaixian.com/api/division/receiver/bind</a></p>
<p>请求方式：POST</p>
<p>请求类型：application/json 或 application/x-www-form-urlencoded</p>
<h1>请求参数</h1>]]></description>
    <pubDate>Wed, 03 Jun 2026 13:46:32 +0800</pubDate>
    <dc:creator>emer</dc:creator>
    <guid>https://api.dianlaibaopay.com/?post=52</guid>
</item>
<item>
    <title>订单分账完结</title>
    <link>https://api.dianlaibaopay.com/?post=53</link>
    <description><![CDATA[<h1>接口说明</h1>
<p>接口描述：</p>
<p>1、调用此接口，可将订单剩余金额解冻给商户。<br />
2、订单分账完结后，不可再次发起分账。<br />
3、返回完结处理中状态时，可调用支付订单查询接口查询最终分账完结状态。</p>
<p>适用对象：普通商户 特约商户</p>
<p>请求URL：<a href="https://pay.yintongzaixian.com/api/division/receiver/bind">https://pay.yintongzaixian.com/api/division/receiver/bind</a></p>
<p>请求方式：POST</p>
<p>请求类型：application/json 或 application/x-www-form-urlencoded</p>
<h1>请求参数</h1>
<table>
<thead>
<tr>
<th>字段名</th>
<th>变量名</th>
<th>必填</th>
<th>类型</th>
<th>示例值</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td>商户号</td>
<td>mchNo</td>
<td>是</td>
<td>String(64)</td>
<td>M1621873433953</td>
<td>商户号</td>
</tr>
<tr>
<td>应用ID</td>
<td>appId</td>
<td>是</td>
<td>String(64)</td>
<td>60cc09bce4b0f1c0b83761c9</td>
<td>应用ID</td>
</tr>
<tr>
<td>支付订单号</td>
<td>payOrderId</td>
<td>否</td>
<td>String(30)</td>
<td>P20160427210604000490</td>
<td>支付中心生成的支付订单号，与mchOrderNo二者传一即可</td>
</tr>
<tr>
<td>商户单号</td>
<td>mchOrderNo</td>
<td>否</td>
<td>String(64)</td>
<td>20160427210604000490</td>
<td>商户生成的支付单号，与payOrderId二者传一即可</td>
</tr>
<tr>
<td>请求时间</td>
<td>reqTime</td>
<td>是</td>
<td>long</td>
<td>1622016572190</td>
<td>请求接口时间,13位时间戳</td>
</tr>
<tr>
<td>接口版本</td>
<td>version</td>
<td>是</td>
<td>String(3)</td>
<td>1.0</td>
<td>接口版本号，固定：1.0</td>
</tr>
<tr>
<td>签名</td>
<td>sign</td>
<td>是</td>
<td>String(32)</td>
<td>C380BEC2BFD727A4B6845133519F3AD6</td>
<td>签名值，详见签名算法</td>
</tr>
<tr>
<td>签名类型</td>
<td>signType</td>
<td>是</td>
<td>String(32)</td>
<td>MD5</td>
<td>签名类型，目前只支持MD5或RSA2方式</td>
</tr>
</tbody>
</table>]]></description>
    <pubDate>Tue, 02 Jun 2026 13:48:05 +0800</pubDate>
    <dc:creator>emer</dc:creator>
    <guid>https://api.dianlaibaopay.com/?post=53</guid>
</item>
<item>
    <title>发起余额分账</title>
    <link>https://api.dianlaibaopay.com/?post=54</link>
    <description><![CDATA[<h1>接口说明</h1>
<p>接口描述：对商户交易的待清算资金发起分账。</p>
<p>适用对象：普通商户 特约商户</p>
<p>请求URL：<a href="https://pay.yintongzaixian.com/api/division/balance/exec">https://pay.yintongzaixian.com/api/division/balance/exec</a></p>
<p>请求方式：POST</p>
<p>请求类型：application/json 或 application/x-www-form-urlencoded</p>
<h1>请求参数</h1>
<table>
<thead>
<tr>
<th>字段名</th>
<th>变量名</th>
<th>必填</th>
<th>类型</th>
<th>示例值</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td>商户号</td>
<td>mchNo</td>
<td>是</td>
<td>String(64)</td>
<td>M1621873433953</td>
<td>商户号</td>
</tr>
<tr>
<td>应用ID</td>
<td>appId</td>
<td>是</td>
<td>String(64)</td>
<td>60cc09bce4b0f1c0b83761c9</td>
<td>应用ID</td>
</tr>
<tr>
<td>商户分账单号</td>
<td>mchDivisionNo</td>
<td>是</td>
<td>String(64)</td>
<td>20160427210604000490</td>
<td>商户生成的唯一分账单号</td>
</tr>
<tr>
<td>支付接口代码</td>
<td>ifCode</td>
<td>是</td>
<td>String(20)</td>
<td>wxpay</td>
<td>wxpay-微信官方接口 ; alipay-支付宝官方接口；jlpay-嘉联</td>
</tr>
<tr>
<td>分账总金额</td>
<td>totalAmount</td>
<td>是</td>
<td>long</td>
<td>100</td>
<td>总分账金额，单位分</td>
</tr>
<tr>
<td>分账接收者账号列表</td>
<td>receivers</td>
<td>是</td>
<td>String(512)</td>
<td>[]</td>
<td>接收者账号列表（JSONArray 转换为字符串类型）参考：[{receiverId: 800001,divisionAmount: 100, //(实际分账金额，单位：分}]</td>
</tr>
<tr>
<td>请求时间</td>
<td>reqTime</td>
<td>是</td>
<td>long</td>
<td>1622016572190</td>
<td>请求接口时间,13位时间戳</td>
</tr>
<tr>
<td>接口版本</td>
<td>version</td>
<td>是</td>
<td>String(3)</td>
<td>1.0</td>
<td>接口版本号，固定：1.0</td>
</tr>
<tr>
<td>签名</td>
<td>sign</td>
<td>是</td>
<td>String(32)</td>
<td>C380BEC2BFD727A4B6845133519F3AD6</td>
<td>签名值，详见签名算法</td>
</tr>
<tr>
<td>签名类型</td>
<td>signType</td>
<td>是</td>
<td>String(32)</td>
<td>MD5</td>
<td>签名类型，目前只支持MD5或RSA2方式</td>
</tr>
</tbody>
</table>
<p>请求示例数据</p>
<pre><code class="language-json">{
    "ifCode": "sxypay",
    "totalAmount": 1,
    "receivers": "[{\"receiverId\":\"6\",\"divisionAmount\":\"1\"}]",
    "appId": "667d06f00d1436b4ad7669e1",
    "sign": "42BA5145A2059D26D5017DB5EEB35E09",
    "signType": "MD5",
    "mchDivisionNo": "1792369673117708282",
    "reqTime": "1737361609",
    "mchNo": "M1719469808",
    "version": "1.0"
}</code></pre>
<h1>返回参数</h1>
<table>
<thead>
<tr>
<th>字段名</th>
<th>变量名</th>
<th>必填</th>
<th>类型</th>
<th>示例值</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td>返回状态</td>
<td>code</td>
<td>是</td>
<td>int</td>
<td>0</td>
<td>0-处理成功，其他-处理有误，详见错误码</td>
</tr>
<tr>
<td>返回信息</td>
<td>msg</td>
<td>否</td>
<td>String(128)</td>
<td>签名失败</td>
<td>具体错误原因，例如：签名失败、参数格式校验错误</td>
</tr>
<tr>
<td>签名信息</td>
<td>sign</td>
<td>否</td>
<td>String(32)</td>
<td>CCD9083A6DAD9A2DA9F668C3D4517A84</td>
<td>对data内数据签名,如data为空则不返回</td>
</tr>
<tr>
<td>返回数据</td>
<td>data</td>
<td>否</td>
<td>String(512)</td>
<td>{}</td>
<td>返回下单数据,json格式数据</td>
</tr>
</tbody>
</table>
<p>data数据格式</p>
<table>
<thead>
<tr>
<th>字段名</th>
<th>变量名</th>
<th>必填</th>
<th>类型</th>
<th>示例值</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td>分账状态</td>
<td>state</td>
<td>是</td>
<td>int</td>
<td>2</td>
<td>分账状态 1-分账成功, 2-分账失败, 3-待分账, 4-分账中</td>
</tr>
<tr>
<td>上游分账批次号</td>
<td>channelBatchOrderId</td>
<td>否</td>
<td>String(30)</td>
<td>T20160427210604000490</td>
<td>上游分账批次号</td>
</tr>
<tr>
<td>系统分账批次号</td>
<td>batchOrderId</td>
<td>否</td>
<td>String(30)</td>
<td>D1792435159956271105</td>
<td>系统分账批次号 v3.7.0新增</td>
</tr>
<tr>
<td>商户分账单号</td>
<td>mchDivisionNo</td>
<td>是</td>
<td>String(64)</td>
<td>20160427210604000490</td>
<td>商户生成的唯一分账单号</td>
</tr>
<tr>
<td>渠道错误码</td>
<td>errCode</td>
<td>否</td>
<td>String</td>
<td>1002</td>
<td>渠道返回错误码</td>
</tr>
<tr>
<td>渠道错误描述</td>
<td>errMsg</td>
<td>否</td>
<td>String</td>
<td>ERROR</td>
<td>渠道返回错误描述</td>
</tr>
</tbody>
</table>
<p>返回示例数据</p>
<pre><code class="language-json">{
    "code": 0,
    "data": {
        "batchOrderId": "D1881257083027062785",
        "mchDivisionNo": "1792369673117708282",
        "state": 4
    },
    "msg": "SUCCESS",
    "sign": "C248903E45C5DF76342E9426225F69E3"
}</code></pre>
<p>SDK调用示例（Java）：</p>
<pre><code class="language-java">JeepayClient jeepayClient = JeepayClient.getInstance(Jeepay.appId, Jeepay.apiKey, Jeepay.getApiBase());
BalanceDivisionExecRequest request = new BalanceDivisionExecRequest();
BalanceDivisionExecReqModel model = new BalanceDivisionExecReqModel();
model.setMchNo(Jeepay.mchNo);                           // 商户号
model.setAppId(jeepayClient.getAppId());                 // 应用ID

request.setBizModel(model);
try {
    BalanceDivisionExecResponse response = jeepayClient.execute(request);
    _log.info("验签结果：{}", response.checkSign(Jeepay.apiKey));
    if (response.isSuccess(Jeepay.apiKey)) {
        _log.info("data：{}", response.getData());
    } else {
        _log.info("请求失败：mchNo={}, msg={}", Jeepay.mchNo, response.getMsg());
    }
} catch (JeepayException e) {
    _log.error(e.getMessage());
}</code></pre>]]></description>
    <pubDate>Mon, 01 Jun 2026 13:49:10 +0800</pubDate>
    <dc:creator>emer</dc:creator>
    <guid>https://api.dianlaibaopay.com/?post=54</guid>
</item>
<item>
    <title>余额分账查询</title>
    <link>https://api.dianlaibaopay.com/?post=55</link>
    <description><![CDATA[<h1>接口说明</h1>
<p>接口描述：查询余额分账的分账交易结果。</p>
<p>适用对象：普通商户 特约商户</p>
<p>请求URL：<a href="https://pay.yintongzaixian.com/api/division/balance/query">https://pay.yintongzaixian.com/api/division/balance/query</a></p>
<p>请求方式：POST</p>
<p>请求类型：application/json 或 application/x-www-form-urlencoded</p>
<h1>请求参数</h1>
<table>
<thead>
<tr>
<th>字段名</th>
<th>变量名</th>
<th>必填</th>
<th>类型</th>
<th>示例值</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td>商户号</td>
<td>mchNo</td>
<td>是</td>
<td>String(64)</td>
<td>M1621873433953</td>
<td>商户号</td>
</tr>
<tr>
<td>应用ID</td>
<td>appId</td>
<td>是</td>
<td>String(64)</td>
<td>60cc09bce4b0f1c0b83761c9</td>
<td>应用ID</td>
</tr>
<tr>
<td>商户分账单号</td>
<td>mchDivisionNo</td>
<td>否</td>
<td>String(64)</td>
<td>20160427210604000490</td>
<td>商户生成的唯一分账单号，与batchOrderId二者传一即可</td>
</tr>
<tr>
<td>系统分账批次号</td>
<td>batchOrderId</td>
<td>否</td>
<td>String(30)</td>
<td>D1622016572190</td>
<td>分账接口返回的系统分账批次号，与mchDivisionNo二者传一即可</td>
</tr>
<tr>
<td>分账接收者ID</td>
<td>receiverId</td>
<td>否</td>
<td>long</td>
<td>80000021</td>
<td>非必填，若传入则仅查询该ID的分账结果</td>
</tr>
<tr>
<td>请求时间</td>
<td>reqTime</td>
<td>是</td>
<td>long</td>
<td>1622016572190</td>
<td>请求接口时间,13位时间戳</td>
</tr>
<tr>
<td>接口版本</td>
<td>version</td>
<td>是</td>
<td>String(3)</td>
<td>1.0</td>
<td>接口版本号，固定：1.0</td>
</tr>
<tr>
<td>签名</td>
<td>sign</td>
<td>是</td>
<td>String(32)</td>
<td>C380BEC2BFD727A4B6845133519F3AD6</td>
<td>签名值，详见签名算法</td>
</tr>
<tr>
<td>签名类型</td>
<td>signType</td>
<td>是</td>
<td>String(32)</td>
<td>MD5</td>
<td>签名类型，目前只支持MD5或RSA2方式</td>
</tr>
</tbody>
</table>
<p>请求示例数据</p>
<pre><code class="language-json">{
    "appId": "667d06f00d1436b4ad7669e1",
    "sign": "C9C8F2DE264690403AFBA403A8997F14",
    "signType": "MD5",
    "mchDivisionNo": "1792369673117708282",
    "reqTime": "1737361988",
    "mchNo": "M1719469808",
    "version": "1.0"
}</code></pre>
<h1>返回参数</h1>
<table>
<thead>
<tr>
<th>字段名</th>
<th>变量名</th>
<th>必填</th>
<th>类型</th>
<th>示例值</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td>返回状态</td>
<td>code</td>
<td>是</td>
<td>int</td>
<td>0</td>
<td>0-处理成功，其他-处理有误，详见错误码</td>
</tr>
<tr>
<td>返回信息</td>
<td>msg</td>
<td>否</td>
<td>String(128)</td>
<td>签名失败</td>
<td>具体错误原因，例如：签名失败、参数格式校验错误</td>
</tr>
<tr>
<td>签名信息</td>
<td>sign</td>
<td>否</td>
<td>String(32)</td>
<td>CCD9083A6DAD9A2DA9F668C3D4517A84</td>
<td>对data内数据签名,如data为空则不返回</td>
</tr>
<tr>
<td>返回数据</td>
<td>data</td>
<td>否</td>
<td>String(512)</td>
<td>{}</td>
<td>返回下单数据,json格式数据</td>
</tr>
</tbody>
</table>
<p>data数据格式</p>
<table>
<thead>
<tr>
<th>字段名</th>
<th>变量名</th>
<th>必填</th>
<th>类型</th>
<th>示例值</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td>商户分账单号</td>
<td>mchDivisionNo</td>
<td>否</td>
<td>String(64)</td>
<td>20160427210604000490</td>
<td>商户生成的唯一分账单号</td>
</tr>
<tr>
<td>系统分账批次号</td>
<td>batchOrderId</td>
<td>是</td>
<td>String(30)   D20160427210604000490</td>
<td>系统分账批次号</td>
</tr>
<tr>
<td>上游分账批次号</td>
<td>channelBatchOrderId</td>
<td>否</td>
<td>String(30)</td>
<td>TGES202106040</td>
<td>上游分账批次号,可能为空</td>
</tr>
<tr>
<td>详细信息</td>
<td>records</td>
<td>否</td>
<td>String</td>
<td>JSON数组，String类型</td>
<td>详细信息</td>
</tr>
</tbody>
</table>
<p>records数据格式</p>
<table>
<thead>
<tr>
<th>字段名</th>
<th>变量名</th>
<th>必填</th>
<th>类型</th>
<th>示例值</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td>分账记录ID</td>
<td>recordId</td>
<td>是</td>
<td>Stirng</td>
<td>1007</td>
<td>分账记录ID</td>
</tr>
<tr>
<td>状态</td>
<td>state</td>
<td>否</td>
<td>int</td>
<td>1</td>
<td>状态: 0-待分账 1-分账成功, 2-分账失败, 3-分账处理中，4-分账已受理</td>
</tr>
<tr>
<td>分账接收者ID</td>
<td>receiverId</td>
<td>否</td>
<td>Long</td>
<td>800001</td>
<td>分账接收者ID</td>
</tr>
<tr>
<td>分账接收者别名</td>
<td>receiverAlias</td>
<td>否</td>
<td>String</td>
<td>张三</td>
<td>分账接收者别名</td>
</tr>
<tr>
<td>分账接收账号</td>
<td>accNo</td>
<td>否</td>
<td>String</td>
<td>628480039999330009</td>
<td>分账接收账号</td>
</tr>
<tr>
<td>分账接收账号名称</td>
<td>accName</td>
<td>否</td>
<td>String</td>
<td>张三</td>
<td>分账接收账号名称</td>
</tr>
<tr>
<td>分账接收账号类型</td>
<td>accType</td>
<td>否</td>
<td>int</td>
<td>1</td>
<td>0-个人 1-商户</td>
</tr>
<tr>
<td>商户分账单号</td>
<td>mchDivisionNo</td>
<td>否</td>
<td>String(64)</td>
<td>20160427210604000490</td>
<td>商户生成的唯一分账单号</td>
</tr>
<tr>
<td>系统分账批次号</td>
<td>batchOrderId</td>
<td>否</td>
<td>String</td>
<td>D1000001</td>
<td>系统分账批次号</td>
</tr>
<tr>
<td>上游分账批次号</td>
<td>channelBatchOrderId</td>
<td>否</td>
<td>String(30)</td>
<td>TGES202106040</td>
<td>上游分账批次号,可能为空</td>
</tr>
<tr>
<td>计算该接收方的分账金额</td>
<td>calDivisionAmount</td>
<td>否</td>
<td>Long</td>
<td>1908</td>
<td>计算该接收方的分账金额,单位分</td>
</tr>
</tbody>
</table>
<p>返回示例数据</p>
<pre><code class="language-json">{
    "code": 0,
    "data": {
        "batchOrderId": "D1881257083027062785",
        "mchDivisionNo": "1792369673117708282",
        "records": "[{\"accName\":\"收件细腻测试\",\"accNo\":\"894222265\",\"accType\":0,\"batchOrderId\":\"D1881257083027062785\",\"calDivisionAmount\":1,\"mchDivisionNo\":\"1792369673117708282\",\"receiverAlias\":\"朱小_骏易\",\"receiverId\":6,\"recordId\":138,\"state\":2}]"
    },
    "msg": "SUCCESS",
    "sign": "35CD170147589A9773ECFBA01D97D8C5"
}</code></pre>
<p>SDK调用示例（Java）：</p>
<pre><code class="language-java">JeepayClient jeepayClient = JeepayClient.getInstance(Jeepay.appId, Jeepay.apiKey, Jeepay.getApiBase());
BalanceDivisionQueryRequest request = new BalanceDivisionQueryRequest();
BalanceDivisionQueryReqModel model = new BalanceDivisionQueryReqModel();
model.setMchNo(Jeepay.mchNo);                           // 商户号
model.setAppId(jeepayClient.getAppId());                 // 应用ID

request.setBizModel(model);
try {
    BalanceDivisionQueryResponse response = jeepayClient.execute(request);
    _log.info("验签结果：{}", response.checkSign(Jeepay.apiKey));
    if (response.isSuccess(Jeepay.apiKey)) {
        _log.info("data：{}", response.getData());
    } else {
        _log.info("请求失败：mchNo={}, msg={}", Jeepay.mchNo, response.getMsg());
    }
} catch (JeepayException e) {
    _log.error(e.getMessage());
}</code></pre>]]></description>
    <pubDate>Sun, 31 May 2026 13:50:01 +0800</pubDate>
    <dc:creator>emer</dc:creator>
    <guid>https://api.dianlaibaopay.com/?post=55</guid>
</item>
<item>
    <title>分账用户绑定查询</title>
    <link>https://api.dianlaibaopay.com/?post=48</link>
    <description><![CDATA[<h1>接口说明</h1>
<p>适用描述：查询分账用户的绑定状态及信息。</p>
<p>适用对象：普通商户 特约商户</p>
<p>请求URL：<a href="https://pay.yintongzaixian.com/api/division/receiver/bind">https://pay.yintongzaixian.com/api/division/receiver/bind</a></p>
<p>请求方式：POST</p>
<p>请求类型：application/json 或 application/x-www-form-urlencoded</p>
<h1>请求参数</h1>]]></description>
    <pubDate>Sat, 30 May 2026 05:43:15 +0800</pubDate>
    <dc:creator>emer</dc:creator>
    <guid>https://api.dianlaibaopay.com/?post=48</guid>
</item>
<item>
    <title>分账用户结算卡变更</title>
    <link>https://api.dianlaibaopay.com/?post=50</link>
    <description><![CDATA[<h1>接口说明</h1>
<p>适用描述：支持变更分账用户结算卡信息。</p>
<p>适用对象：普通商户 特约商户</p>
<p>请求URL：<a href="https://pay.yintongzaixian.com/api/division/receiver/bind">https://pay.yintongzaixian.com/api/division/receiver/bind</a></p>
<p>请求方式：POST</p>
<p>请求类型：application/json 或 application/x-www-form-urlencoded</p>
<h1>请求参数</h1>]]></description>
    <pubDate>Fri, 29 May 2026 04:44:23 +0800</pubDate>
    <dc:creator>emer</dc:creator>
    <guid>https://api.dianlaibaopay.com/?post=50</guid>
</item>
</channel>
</rss>