查询用户分组下拉框
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>查询用户分组下拉框</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>/system/group/selectList</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>GET </li>
</ul>
<h5>参数</h5>
<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;">operatorId</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">Long</td>
<td>运营商id</td>
</tr>
<tr>
<td style="text-align: left;">agentId</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">Long</td>
<td>代理商id</td>
</tr>
</tbody>
</table>
<h5>请求示例</h5>
<pre><code></code></pre>
<h5>返回示例</h5>
<pre><code>{
&quot;msg&quot;: &quot;操作成功&quot;,
&quot;code&quot;: 200,
&quot;data&quot;: [
{
&quot;createBy&quot;: &quot;admin&quot;,
&quot;createTime&quot;: &quot;2025-03-21 10:54:24&quot;,
&quot;updateBy&quot;: null,
&quot;updateTime&quot;: null,
&quot;remark&quot;: &quot;22ssddd&quot;,
&quot;id&quot;: 2,
&quot;operator&quot;: &quot;运营商1&quot;,
&quot;agent&quot;: &quot;代理商1&quot;,
&quot;operatorId&quot;: null,
&quot;agentId&quot;: null,
&quot;groupName&quot;: &quot;分组111&quot;,
&quot;count&quot;: null
},
{
&quot;createBy&quot;: &quot;admin&quot;,
&quot;createTime&quot;: &quot;2025-03-25 16:27:45&quot;,
&quot;updateBy&quot;: null,
&quot;updateTime&quot;: null,
&quot;remark&quot;: &quot;sadsads&quot;,
&quot;id&quot;: 3,
&quot;operator&quot;: &quot;运营商2&quot;,
&quot;agent&quot;: &quot;代理商2&quot;,
&quot;operatorId&quot;: null,
&quot;agentId&quot;: null,
&quot;groupName&quot;: &quot;测试分组111&quot;,
&quot;count&quot;: null
},
{
&quot;createBy&quot;: &quot;admin&quot;,
&quot;createTime&quot;: &quot;2025-03-26 10:23:43&quot;,
&quot;updateBy&quot;: null,
&quot;updateTime&quot;: null,
&quot;remark&quot;: &quot;&quot;,
&quot;id&quot;: 4,
&quot;operator&quot;: &quot;Option 1&quot;,
&quot;agent&quot;: &quot;Option 2&quot;,
&quot;operatorId&quot;: 1,
&quot;agentId&quot;: 2,
&quot;groupName&quot;: &quot;测试分组&quot;,
&quot;count&quot;: null
}
]
}</code></pre>
<p>参数说明</p>
<pre><code>/** 运营商 */
@Excel(name = &quot;运营商&quot;)
private String operator;
/** 代理商 */
@Excel(name = &quot;代理商&quot;)
private String agent;
/** 运营商id */
@Excel(name = &quot;运营商id&quot;)
private Long operatorId;
/** 代理商id */
@Excel(name = &quot;代理商id&quot;)
private Long agentId;
/** 分组名称 */
@Excel(name = &quot;分组名称&quot;)
private String groupName;
private Integer count;</code></pre>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>