报备号卡信息列表分页查询接口
<h3>API接口文档:分页查询业务区域报备号卡信息列表</h3>
<hr />
<h4><strong>接口名称</strong></h4>
<p>分页查询业务区域报备号卡信息列表</p>
<h4><strong>接口描述</strong></h4>
<p>根据业务区域报备ID(<code>tenantBizAreaId</code>)分页查询关联的号卡信息(包括192号码、ICCID、渠道商编码等)。</p>
<hr />
<h4><strong>请求方式</strong></h4>
<p><code>GET</code></p>
<h4><strong>请求URL</strong></h4>
<pre><code>/cbn/tenantBizAreaSimLog/msisdn/page</code></pre>
<hr />
<h4><strong>请求参数</strong></h4>
<table>
<thead>
<tr>
<th>参数类型</th>
<th>参数名称</th>
<th>必填</th>
<th>描述</th>
<th>示例值</th>
</tr>
</thead>
<tbody>
<tr>
<td>分页参数</td>
<td><code>pageInfo.pageNum</code></td>
<td>是</td>
<td>当前页码,从1开始</td>
<td><code>1</code></td>
</tr>
<tr>
<td>分页参数</td>
<td><code>pageInfo.pageSize</code></td>
<td>否</td>
<td>每页数量,默认为10</td>
<td><code>10</code></td>
</tr>
<tr>
<td>查询参数</td>
<td><code>query.tenantBizAreaId</code></td>
<td>是</td>
<td>业务区域报备ID(关联主表)</td>
<td><code>1</code></td>
</tr>
<tr>
<td>查询参数</td>
<td><code>query.msisdn</code></td>
<td>是</td>
<td>192号码/ICCID</td>
<td><code>1</code></td>
</tr>
</tbody>
</table>
<hr />
<h4><strong>响应参数</strong></h4>
<h5>整体结构</h5>
<table>
<thead>
<tr>
<th>字段</th>
<th>类型</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>code</code></td>
<td>Integer</td>
<td>状态码(0=成功)</td>
</tr>
<tr>
<td><code>msg</code></td>
<td>String</td>
<td>状态描述</td>
</tr>
<tr>
<td><code>data</code></td>
<td>Object</td>
<td>分页数据对象</td>
</tr>
</tbody>
</table>
<h5><code>data</code> 分页对象</h5>
<table>
<thead>
<tr>
<th>字段</th>
<th>类型</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>total</code></td>
<td>Long</td>
<td>总数据量</td>
</tr>
<tr>
<td><code>pageSize</code></td>
<td>Integer</td>
<td>每页数量</td>
</tr>
<tr>
<td><code>rows</code></td>
<td>Array</td>
<td>当前页的数据列表</td>
</tr>
<tr>
<td><code>pages</code></td>
<td>Integer</td>
<td>总页数</td>
</tr>
<tr>
<td><code>pageNum</code></td>
<td>Integer</td>
<td>当前页码</td>
</tr>
</tbody>
</table>
<h5><code>rows</code> 数据对象</h5>
<table>
<thead>
<tr>
<th>字段</th>
<th>类型</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>msisdn</code></td>
<td>String</td>
<td>192号码</td>
</tr>
<tr>
<td><code>iccid</code></td>
<td>String</td>
<td>物联网卡号(ICCID)</td>
</tr>
<tr>
<td><code>tenantBizAreaId</code></td>
<td>Long</td>
<td>业务区域报备ID</td>
</tr>
<tr>
<td><code>tenantCode</code></td>
<td>String</td>
<td>渠道商编码</td>
</tr>
</tbody>
</table>
<hr />
<h4><strong>请求示例</strong></h4>
<pre><code>GET http://localhost:9999/cbn/tenantBizAreaSimLog/msisdn/page?pageInfo.pageNum=1&amp;query.tenantBizAreaId=1</code></pre>
<h4><strong>响应示例</strong></h4>
<pre><code class="language-json">{
&quot;code&quot;: 0,
&quot;msg&quot;: &quot;操作成功&quot;,
&quot;data&quot;: {
&quot;total&quot;: 39,
&quot;pageSize&quot;: 10,
&quot;rows&quot;: [
{
&quot;msisdn&quot;: &quot;19227508214&quot;,
&quot;iccid&quot;: &quot;89861500192440859413&quot;,
&quot;tenantBizAreaId&quot;: 1,
&quot;tenantCode&quot;: &quot;1042&quot;
},
// ...(其他数据项)
],
&quot;pages&quot;: 4,
&quot;pageNum&quot;: 1
}
}</code></pre>
<hr />
<h4><strong>注意事项</strong></h4>
<ol>
<li>分页参数未传<code>pageSize</code>时,默认每页返回10条数据。</li>
<li>查询必须指定<code>query.tenantBizAreaId</code>,否则返回参数错误。</li>
<li>返回的<code>rows</code>列表中不包含<code>serialNo</code>和<code>ordNum</code>字段(这些字段可能用于其他场景)。</li>
</ol>