获取认购人列表
<p><strong>简要描述:</strong> </p>
<ul>
<li>获取计划认购人列表</li>
</ul>
<p><strong>请求URL:</strong> </p>
<ul>
<li><code>http://xx.com/api/plans/plans/get-subscribe-people</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;">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: 2, // 当前页条数
pages: 1, // 总页数
total: &quot;2&quot;, // 总条数
data:[
0:{
buy_money:&quot;1000.00&quot; // 认购金额
create_time:&quot;2017-07-28 14:20:06&quot; // 认购时间
status:&quot;2&quot; // 状态 2:进行中 3:结算
status_name:&quot;进行中&quot; // 状态名
user_name:&quot;189*114&quot; // 认购人名
total_profit:null // 利润
1:{user_name: &quot;189*114&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>