B端-获取我的认购客户列表
<p><strong>简要描述:</strong> </p>
<ul>
<li>获取我的认购客户列表</li>
</ul>
<p><strong>请求URL:</strong> </p>
<ul>
<li><code>http://xx.com/api/plans/plans/get-custom-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;">token</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>B端token</td>
</tr>
<tr>
<td style="text-align: left;">status</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">string</td>
<td>状态 默认全部 2:进行中 3:结算</td>
</tr>
<tr>
<td style="text-align: left;">page</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">string</td>
<td>当前页 默认1</td>
</tr>
<tr>
<td style="text-align: left;">size</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">string</td>
<td>当前页 默认10</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code> {
code:600
msg:&quot;门店的认购客户&quot;
result:{
page: 1,
size: 4,
pages: 1,
total: &quot;4&quot;,
data:[
0:{
buy_money:&quot;1000.00&quot; // 认购金额
create_time:&quot;2017-07-28 14:20:06&quot; // 认购时间
cycle:&quot;2017-08-27 14:20:06&quot; // 结算时间
end_time:&quot;2017-08-27 14:20:06&quot; // 结算时间
status:&quot;2&quot; // 状态 2:进行中 3:结算
status_name:&quot;进行中&quot;
user_name:&quot;18950475114&quot; // 客户名
user_plan_id:&quot;1&quot; // 认购计划Id
}
1:{user_plan_id: &quot;2&quot;, user_name: &quot;18950475114&quot;, buy_money: &quot;1000.00&quot;, status: &quot;2&quot;,…}
2:{user_plan_id: &quot;6&quot;, user_name: &quot;18950475114&quot;, buy_money: &quot;1000.00&quot;, status: &quot;2&quot;,…}
3:{user_plan_id: &quot;7&quot;, user_name: &quot;18950475114&quot;, buy_money: &quot;1000.00&quot;, status: &quot;2&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>