获取冻结金额记录
<p><strong>简要描述:</strong> </p>
<ul>
<li>获取冻结金额记录</li>
</ul>
<p><strong>请求URL:</strong> </p>
<ul>
<li>` <a href="http://xx.com/publicinterface/interface/get-ice-records">http://xx.com/publicinterface/interface/get-ice-records</a></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;">pType</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">integer</td>
<td>1、收入 2、支出 其他、全部</td>
</tr>
<tr>
<td style="text-align: left;">order_code</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;">integer</td>
<td>条数 默认10</td>
</tr>
<tr>
<td style="text-align: left;">page_num</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">integer</td>
<td>第几页 默认1</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code> {
&quot;code&quot;: 600,
&quot;msg&quot;: &quot;获取成功&quot;,
&quot;result&quot;: {
&quot;records&quot;:[{
&quot;cust_no&quot;: &quot;gl00002100&quot;,
&quot;order_code&quot;: &quot;GLCFA1708291156F0000001&quot;, //订单编号
&quot;money&quot;: &quot;+2000.00&quot;, //期数
&quot;ice_balance&quot;: &quot;2000.00&quot;, //开奖时间
&quot;body&quot;: &quot;发布方案保底&quot;, //限制购买时间
&quot;type&quot;: &quot;1&quot;,//1、收入 2、支出
&quot;create_time&quot;:&quot;2017-08-29 11:56:06&quot;
}],
&quot;count&quot;:&quot;1&quot;,//实际获取记录条数
&quot;size&quot;:&quot;10&quot;,//设置获取每页10条
&quot;current_page&quot;:&quot;1&quot;,//当前页码
&quot;total&quot;:&quot;1&quot;,//总共记录条数
&quot;total_pages&quot;:&quot;1&quot;//总共页数
}
}</code></pre>
<p><strong>备注</strong> </p>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>