选择团队成员
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>医护管理医生管理获取医生分页信息</li>
</ul>
<h5>说明</h5>
<ul>
<li><code>测试环境URL 以 http://192.168.2.92:8080/test 开头</code></li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>/medicalcare/doctor/select</code></li>
</ul>
<h5>Header</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">Authorization</td>
<td style="text-align: left;">是</td>
<td>String</td>
<td>登录接口返回的用户 token</td>
</tr>
</tbody>
</table>
<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>说明</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<h5>返回参数说明</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">code</td>
<td style="text-align: left;">String</td>
<td>接口返回状态码 0000 表示成功</td>
</tr>
<tr>
<td style="text-align: left;">msg</td>
<td style="text-align: left;">String</td>
<td>接口返回提示信息 success 表示成功 其他内容表示异常提示信息</td>
</tr>
<tr>
<td style="text-align: left;">data</td>
<td style="text-align: left;">Object</td>
<td>接口返回对象 code = 0000 有值</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code> {
&quot;code&quot;: &quot;0000&quot;,
&quot;msg&quot;: &quot;success&quot;,
&quot;data&quot;: [
{
&quot;department&quot;: &quot;心血管内科&quot;,
&quot;title&quot;: &quot;主任医师&quot;,
&quot;employee&quot;: [
{
&quot;name&quot;: &quot;张医生&quot;,
&quot;employeeId&quot;: &quot;20212111&quot;
},
{
&quot;name&quot;: &quot;陈医生&quot;,
&quot;employeeId&quot;: &quot;20212114&quot;
}
]
},
{
&quot;department&quot;: &quot;心血管内科&quot;,
&quot;title&quot;: &quot;护师&quot;,
&quot;employee&quot;: [
{
&quot;name&quot;: &quot;刘护士&quot;,
&quot;employeeId&quot;: &quot;20212112&quot;
},
{
&quot;name&quot;: &quot;李医生&quot;,
&quot;employeeId&quot;: &quot;20212115&quot;
}
]
},
{
&quot;department&quot;: &quot;心血管内科&quot;,
&quot;title&quot;: &quot;副主任医师&quot;,
&quot;employee&quot;: [
{
&quot;name&quot;: &quot;王医生&quot;,
&quot;employeeId&quot;: &quot;20212113&quot;
},
{
&quot;name&quot;: &quot;陆医生&quot;,
&quot;employeeId&quot;: &quot;20212116&quot;
},
{
&quot;name&quot;: &quot;季医生&quot;,
&quot;employeeId&quot;: &quot;20212117&quot;
}
]
},
{
&quot;department&quot;: &quot;超级管理员&quot;,
&quot;title&quot;: &quot;超级管理员&quot;,
&quot;employee&quot;: [
{
&quot;name&quot;: &quot;admin&quot;,
&quot;employeeId&quot;: &quot;admin&quot;
}
]
}
]
}</code></pre>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>