分配用户
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>分配用户</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>/system/group/allocateUser</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>POST </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;">id</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">Long</td>
<td>分组id</td>
</tr>
<tr>
<td style="text-align: left;">List<RentalUserGroupDetail> details</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;"></td>
<td></td>
</tr>
</tbody>
</table>
<h5>请求示例</h5>
<pre><code>{
&quot;id&quot;: 1,
&quot;details&quot;: [
{
&quot;userId&quot;: 1,
&quot;userNickName&quot;: &quot;若依&quot;,
&quot;userName&quot;: &quot;admin&quot;,
&quot;phone&quot;: &quot;12332222&quot;
}
]
}</code></pre>
<h5>参数</h5>
<pre><code>/** 用户id */
@Excel(name = &quot;用户id&quot;)
private Long userId;
/** 用户昵称 */
@Excel(name = &quot;用户昵称&quot;)
private String userNickName;
/** 用户姓名 */
@Excel(name = &quot;用户姓名&quot;)
private String userName;
/** 手机号 */
@Excel(name = &quot;手机号&quot;)
private String phone;</code></pre>
<h5>返回示例</h5>
<pre><code>{
&quot;msg&quot;: &quot;操作成功&quot;,
&quot;code&quot;: 200
}</code></pre>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>