B端-获取客户投注订单列表
<p><strong>简要描述:</strong> </p>
<ul>
<li>获取客户投注订单列表接口</li>
</ul>
<p><strong>请求URL:</strong> </p>
<ul>
<li><code>http://xx.com/api/plans/plans/get-order-list</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>POST </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>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">user_id</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>用户Id</td>
</tr>
<tr>
<td style="text-align: left;">user_plan_id</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>认购计划Id</td>
</tr>
<tr>
<td style="text-align: left;">page</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">string</td>
<td>当前页</td>
</tr>
<tr>
<td style="text-align: left;">size</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">string</td>
<td>当前页条数</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code> {
code:600
msg:&quot;客户购彩列表&quot;
result:{
page: 1, // 当前页码
size: 0, // 当前页条数
pages: 0, // 总页数
total: &quot;0&quot;, // 总条数
data: [
0:{
lottery_order_id:&quot;xxx&quot; // 投注订单ID
lottery_additional_id:&quot;xx&quot; // 认购计划Id
lottery_order_code:&quot;xxxxxxx&quot; // 投注订单编码
user_id: &quot;xxx&quot; // 用户Id
lottery_name:&quot;xx&quot; // 彩种编码
lottery_id:&quot;xxx&quot; // 彩种Id
bet_money:&quot;5.0&quot; // 投注金额
win_amount: &quot;10.00&quot; // 中奖金额
&quot;status&quot;: 5 // 订单状态
&quot;status_name&quot; : 状态名
}
]
}
}</code></pre>
<p><strong>返回参数说明</strong> </p>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<p><strong>备注</strong> </p>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>