5.1 添加商户
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>平台商户添加</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>/admin-Merchant</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>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">sex</td>
<td style="text-align: left;">int</td>
<td>0 女,1男</td>
</tr>
</tbody>
</table>
<h5>请求示例</h5>
<pre><code>{
&quot;full_name&quot;:&quot;测试全称2&quot;,
&quot;short_name&quot;:&quot;测试检查2&quot;,
&quot;phone&quot;:&quot;15689898889&quot;,
&quot;link_man&quot;:&quot;联系人&quot;,
&quot;status&quot;:1,
&quot;product_id&quot;:1,
&quot;merchant_login_name&quot;:&quot;login_name13&quot;,
&quot;merchant_Password&quot;:&quot;123456&quot;,
&quot;remark&quot;:&quot;remarkremarkremarkremark&quot;
}</code></pre>
<h5>返回示例</h5>
<pre><code>{
&quot;code&quot;: &quot;0&quot;,
&quot;msg&quot;: &quot;Success&quot;,
&quot;data&quot;: &quot;7&quot;
}
{
&quot;code&quot;: &quot;500&quot;,
&quot;msg&quot;: &quot;手机号已存在!&quot;,
&quot;data&quot;: null
}</code></pre>
<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;">groupid</td>
<td style="text-align: left;">int</td>
<td>用户组id,1:超级管理员;2:普通用户</td>
</tr>
</tbody>
</table>
<h5>备注</h5>
<p>String full_name; //全称
String short_name; //简称
String link_man; //商户联系人
String phone; //租户商家 电话
Integer status; //状态 1 正常 0关闭
Integer product_id; // 套餐id
Integer m_userid; //商户管理员用户id
String merchant_login_name; //商户管理员名字
String merchant_Password; //商户管理员密码
String remark; //商户备注</p>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>