前端个人用户登录接口
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>前段登录接口</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>http://localhost:8080/webUser/proLogin</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>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">userName</td>
<td style="text-align: left;">是</td>
<td>string</td>
<td>用户名</td>
</tr>
<tr>
<td style="text-align: left;">password</td>
<td style="text-align: left;">是</td>
<td>string</td>
<td>密码</td>
</tr>
</tbody>
</table>
<h5>请求示例</h5>
<p>格式:form-data</p>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">值</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">userName</td>
<td style="text-align: left;">20021002</td>
</tr>
<tr>
<td style="text-align: left;">password</td>
<td style="text-align: left;">20021002</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code> {
&quot;res&quot;: true,
&quot;message&quot;: &quot;{\&quot;id\&quot;:2,\&quot;userName\&quot;:\&quot;20021002\&quot;,\&quot;phone\&quot;:\&quot;18281603125\&quot;,\&quot;date\&quot;:\&quot;2023?02?27? 17:04:36\&quot;,\&quot;portrait\&quot;:\&quot;upload/default/images/portrait.png\&quot;,\&quot;pEmail\&quot;:\&quot;3447235110@qq.com\&quot;,\&quot;point\&quot;:10}&quot;
}</code></pre>
<h5>返回参数说明</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th style="text-align: left;">说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">res</td>
<td style="text-align: left;">string</td>
<td style="text-align: left;">返回状态,true:成功;false:失败</td>
</tr>
<tr>
<td style="text-align: left;">message</td>
<td style="text-align: left;">string</td>
<td style="text-align: left;">返回用户id,编号,用户名 电话 日期 邮箱</td>
</tr>
</tbody>
</table>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>