处理订单接口
<h4><strong>简要描述:</strong></h4>
<p>后台管理员处理平台自营订单接口</p>
<h4><strong>请求URL:</strong></h4>
<p><code>http://平台域名/api/admin/v1/order/dual</code></p>
<h4><strong>请求方式:</strong></h4>
<p><code>POST</code></p>
<h4><strong>请求参数:</strong></h4>
<table>
<thead>
<tr>
<th>Header 参数</th>
<th>类型</th>
<th>是否必填</th>
<th>描述</th>
<th>示例值</th>
</tr>
</thead>
<tbody>
<tr>
<td>UserId</td>
<td>string</td>
<td>是</td>
<td>您的后台管理员登录账号</td>
<td>admin</td>
</tr>
<tr>
<td>Sign</td>
<td>string</td>
<td>是</td>
<td>签名(后台-设置-后台用户-管理员列表-编辑获取apikey)</td>
<td>[点击查看签名规范](<a href="https://doc.kasushou.com/api/v2api/39">https://doc.kasushou.com/api/v2api/39</a> " 点击查看签名规范")</td>
</tr>
<tr>
<td>Timestamp</td>
<td>string</td>
<td>是</td>
<td>13位时间戳(毫秒)</td>
<td>1696644296195</td>
</tr>
</tbody>
</table>
<table>
<thead>
<tr>
<th>Body 参数</th>
<th>类型</th>
<th>是否必填</th>
<th>描述</th>
<th>示例值</th>
</tr>
</thead>
<tbody>
<tr>
<td>ids</td>
<td>array</td>
<td>是</td>
<td>订单ID数组</td>
<td>[9527]</td>
</tr>
<tr>
<td>status</td>
<td>string</td>
<td>是</td>
<td>处理状态(2=正在处理,3=交易成功,4=取消交易,5=退款)</td>
<td>3</td>
</tr>
<tr>
<td>recharge_hints</td>
<td>string</td>
<td>否</td>
<td>处理返回信息,不填则默认</td>
<td>订单交易成功,期待您的下次光临</td>
</tr>
<tr>
<td>money</td>
<td>string</td>
<td>否</td>
<td>退款金额(订单状态为等待处理、正在处理、交易成功时可填)</td>
<td>0.00</td>
</tr>
<tr>
<td>backmoney_part</td>
<td>string</td>
<td>否</td>
<td>退款类型(1=全额退款,2=部分退款)[全额退款不判断money值]</td>
<td>1</td>
</tr>
</tbody>
</table>
<h4><strong>签名示例:</strong></h4>
<p><code>1699528282856{&quot;backmoney_part&quot;:0,&quot;ids&quot;:[9527],&quot;money&quot;:&quot;&quot;,&quot;recharge_hints&quot;:&quot;&quot;,&quot;status&quot;:3}k4Y8hywXDpU67foPbdDANuqSeTS9qqMPnZ2djOHJtDcotM</code></p>
<h4><strong>返回示例:</strong></h4>
<ol>
<li><code>{</code></li>
<li><code>&quot;code&quot;:200,</code></li>
<li><code>&quot;msg&quot;:&quot;操作成功&quot;,</code></li>
<li><code>&quot;data&quot;:{</code></li>
<li><code>&quot;msg_list&quot;:[</code></li>
<li><code>{</code></li>
<li><code>&quot;id&quot;:&quot;9527&quot;,</code></li>
<li><code>&quot;msg&quot;:&quot;[9527]处理成功&quot;,</code></li>
<li><code>&quot;status&quot;:true</code></li>
<li><code>}</code></li>
<li><code>]</code></li>
<li><code>}</code></li>
<li><code>}</code></li>
</ol>
<h4><strong>返回data说明:</strong></h4>
<table>
<thead>
<tr>
<th>参数名</th>
<th>类型</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td>msg_list</td>
<td>array</td>
<td>处理结果</td>
</tr>
</tbody>
</table>
<h4><strong>返回msg_list说明:</strong></h4>
<table>
<thead>
<tr>
<th>参数名</th>
<th>类型</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td>id</td>
<td>string</td>
<td>订单ID</td>
</tr>
<tr>
<td>msg</td>
<td>string</td>
<td>成功或失败信息</td>
</tr>
<tr>
<td>status</td>
<td>boolean</td>
<td>处理状态(true/false)</td>
</tr>
</tbody>
</table>