通过用户ID查询邀请企业,手机端邀请页面
<p><strong>接口描述:</strong></p>
<p><a href="http://localhost:8060/apiweb/public/dataLoad/memberpreviouinfo(不需要登录">http://localhost:8060/apiweb/public/dataLoad/memberpreviouinfo(不需要登录</a>)
<strong>请求URL:</strong></p>
<ul>
<li><code>public/dataLoad/memberpreviouinfo</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>POST</li>
</ul>
<p><strong>请求参数:JSON格式</strong></p>
<table>
<thead>
<tr>
<th style="text-align: left;">字段</th>
<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;">userId</td>
<td style="text-align: left;">long</td>
<td style="text-align: left;">用户ID</td>
<td style="text-align: left;">是</td>
</tr>
</tbody>
</table>
<p><strong>响应头参数:</strong></p>
<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;">code</td>
<td style="text-align: left;">int</td>
<td style="text-align: left;">响应代码</td>
</tr>
<tr>
<td style="text-align: left;">message</td>
<td style="text-align: left;">string</td>
<td style="text-align: left;">响应描述</td>
</tr>
<tr>
<td style="text-align: left;">data</td>
<td style="text-align: left;">json</td>
<td style="text-align: left;">业务数据</td>
</tr>
</tbody>
</table>
<p><strong>响应data参数:</strong></p>
<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;">id</td>
<td style="text-align: left;">int</td>
<td style="text-align: left;">用户ID</td>
</tr>
<tr>
<td style="text-align: left;">companyName</td>
<td style="text-align: left;">string</td>
<td style="text-align: left;">企业</td>
</tr>
<tr>
<td style="text-align: left;">userName</td>
<td style="text-align: left;">String</td>
<td style="text-align: left;">姓名</td>
</tr>
<tr>
<td style="text-align: left;">userMobile</td>
<td style="text-align: left;">String</td>
<td style="text-align: left;">手机号</td>
</tr>
<tr>
<td style="text-align: left;">userStatus</td>
<td style="text-align: left;">int</td>
<td style="text-align: left;">用户状态:1:初始状态,2:已邀请,3:已同意加入邀请企业,0:已绑定(逻辑删除</td>
</tr>
</tbody>
</table>
<p><strong>请求示例</strong></p>
<pre><code>{
&quot;userId&quot;:10
}</code></pre>
<p><strong>响应示例</strong></p>
<pre><code>{
&quot;code&quot;: 200,
&quot;message&quot;: &quot;操作成功&quot;,
&quot;data&quot;: {
&quot;id&quot;: 10,
&quot;memberId&quot;: 148,
&quot;memberRealId&quot;: 57,
&quot;companyName&quot;: &quot;任丘市劳尔焊接设备厂&quot;,
&quot;userName&quot;: &quot;刘明一&quot;,
&quot;userMobile&quot;: &quot;13651806461&quot;,
&quot;userStatus&quot;: 3,
&quot;inviteNums&quot;: 0,
&quot;createTime&quot;: &quot;2024-06-11T01:09:07.000+0000&quot;,
&quot;updateTime&quot;: &quot;2024-06-11T01:09:07.000+0000&quot;
}
}</code></pre>
<p><strong>备注</strong></p>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>