指定多个注单号获取注单
<p><strong>简要描述:</strong></p>
<ul>
<li>传入多个指定的注单id 获取注单结算和取消状态</li>
</ul>
<p><strong>请求URL:</strong></p>
<ul>
<li><code>http://xxx.xxx.com/apiopen/get_bill_by_ids</code> 后台接口</li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>POST Content-Type: application/x-www-form-urlencoded</li>
</ul>
<p><strong> 参数 </strong></p>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
<th style="text-align: left;">规则</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">str</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>注单id,以英文逗号隔开</td>
<td style="text-align: left;">string</td>
</tr>
</tbody>
</table>
<p><strong> 传参示例:</strong>
1,2,3,4,5,更多注单号..</p>
<p><strong>返回示例</strong></p>
<pre><code>{
"res": true, // 是否成功
"msg": "", // 错误提示
"data": [
{
"id": "23679291", // 注单id
"userid": "53429", // 彩票userid
"username": "19910923", // 彩票用户名
"valid_money": "55", // 有效投注
"user_win": "-55", // 用户输赢
"user_cut": "100",
"total": "55", // 总投注额
"count": "1", // 结算状态
"count_status": "1",
"cancel": "0", // 是否已经取消
"cp_type": "0"
}
]
}</code></pre>