登录
<p>[TOC]</p>
<hr />
<h3>接口说明</h3>
<ul>
<li>登录,若密码连续错误5次,则锁定账号无法登陆</li>
</ul>
<h3>接口地址</h3>
<ul>
<li><code>http://xxx.com/login/signIn</code></li>
</ul>
<h3>请求方式</h3>
<ul>
<li>POST</li>
</ul>
<h3>请求参数</h3>
<ul>
<li><strong>请求体</strong></li>
<li><strong>Content-Type:application/json</strong></li>
</ul>
<table>
<thead>
<tr>
<th style="text-align: center;">参数名</th>
<th style="text-align: center;">类型</th>
<th style="text-align: center;">是否必选</th>
<th style="text-align: center;">说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: center;">userName</td>
<td style="text-align: center;">String</td>
<td style="text-align: center;">√</td>
<td style="text-align: center;">用户名</td>
</tr>
<tr>
<td style="text-align: center;">userPwd</td>
<td style="text-align: center;">String</td>
<td style="text-align: center;">√</td>
<td style="text-align: center;">用户密码</td>
</tr>
</tbody>
</table>
<h3>响应数据</h3>
<table>
<thead>
<tr>
<th style="text-align: center;">参数名</th>
<th style="text-align: center;">类型</th>
<th style="text-align: center;">说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: center;">res</td>
<td style="text-align: center;">String</td>
<td style="text-align: center;">1:成功,0:失败</td>
</tr>
<tr>
<td style="text-align: center;">msg</td>
<td style="text-align: center;">String</td>
<td style="text-align: center;">提示信息</td>
</tr>
<tr>
<td style="text-align: center;">data</td>
<td style="text-align: center;">String</td>
<td style="text-align: center;">token密钥</td>
</tr>
<tr>
<td style="text-align: center;">error</td>
<td style="text-align: center;">String</td>
<td style="text-align: center;">错误信息</td>
</tr>
<tr>
<td style="text-align: center;">count</td>
<td style="text-align: center;">String</td>
<td style="text-align: center;">数量</td>
</tr>
</tbody>
</table>
<h3>响应示例</h3>
<pre><code>{
&quot;res&quot;: 1,
&quot;msg&quot;: &quot;登录成功&quot;,
&quot;data&quot;: &quot;eyJhbGciOiJIUzI1NiIsIlR5cGUiOiJKd3QiLCJ0eXAiOiJKV1QifQ.eyJsb2dpblRpbWUiOiIyMDIzLTAzLTA3IDE2OjMyOjU1IiwibG9naW5OYW1lIjoicm9vdCIsImV4cCI6MTY3ODE3OTc3NX0.7jy_AVg9KKCfYChDqb6ocsZFGymiwuEGo7fVtFsDZSw&quot;,
&quot;count&quot;: 1,
&quot;error&quot;: null
}</code></pre>
<pre><code>{
&quot;res&quot;: 0,
&quot;msg&quot;: &quot;用户不存在&quot;,
&quot;data&quot;: null,
&quot;count&quot;: 0,
&quot;error&quot;: null
}</code></pre>
<pre><code>{
&quot;res&quot;: 0,
&quot;msg&quot;: &quot;密码错误,您还有3次机会&quot;,
&quot;data&quot;: null,
&quot;count&quot;: 0,
&quot;error&quot;: null
}</code></pre>
<pre><code>{
&quot;res&quot;: 0,
&quot;msg&quot;: &quot;密码错误次数过多,账号已被锁定,请联系管理员&quot;,
&quot;data&quot;: null,
&quot;count&quot;: 0,
&quot;error&quot;: null
}</code></pre>
<pre><code>{
&quot;res&quot;: 0,
&quot;msg&quot;: &quot;账号已被锁定,请联系管理员&quot;,
&quot;data&quot;: null,
&quot;count&quot;: 0,
&quot;error&quot;: null
}</code></pre>