重置密码
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>重置密码 接口</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>192.168.110.208:8655/api/enterprise/login/resetPassword</code></li>
</ul>
<h5>请求方式 json格式 需要加密</h5>
<ul>
<li>POST </li>
</ul>
<h5>请求示例</h5>
<pre><code>{
&quot;sign&quot;:&quot;5cc680af7e3c46e78f3756f89a58b3f1&quot;,
&quot;pwd&quot;:&quot;e8deef09605f4e9e0024b9243526196a&quot;,
&quot;againPwd&quot;:&quot;e8deef09605f4e9e0024b9243526196a&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>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">sign</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">签名</td>
<td>在跳转路径中获取</td>
</tr>
<tr>
<td style="text-align: left;">pwd</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>密码 (MD5加密)</td>
</tr>
<tr>
<td style="text-align: left;">againPwd</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>密码(MD5加密)</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code> {
&quot;code&quot;: 2029,
&quot;msg&quot;: &quot;链接已失效&quot;,
&quot;data&quot;: {}
}</code></pre>