获取推荐位商户列表
<p><strong>接口说明 </strong></p>
<pre><code>请求接口: /base/shop/recommend
请求方式: GET
接口说明: 获取推荐位商户列表</code></pre>
<p><strong>请求参数 </strong></p>
<table>
<thead>
<tr>
<th>参数名</th>
<th>必选</th>
<th>长度</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>mallId</td>
<td>是</td>
<td>4</td>
<td>int</td>
<td>商场id</td>
</tr>
<tr>
<td>type</td>
<td>是</td>
<td>4</td>
<td>int</td>
<td>商户类型(0商场内商户,1场外服务商户,2点餐商城商户)</td>
</tr>
<tr>
<td>recommendCode</td>
<td>是</td>
<td>20</td>
<td>string</td>
<td>推荐位编号</td>
</tr>
</tbody>
</table>
<p><strong>返回参数</strong></p>
<table>
<thead>
<tr>
<th>参数名</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>code</td>
<td>string</td>
<td>状态值</td>
</tr>
<tr>
<td>msg</td>
<td>string</td>
<td>返回消息</td>
</tr>
<tr>
<td>id</td>
<td>int</td>
<td>店铺id</td>
</tr>
<tr>
<td>shopName</td>
<td>string</td>
<td>店铺名称</td>
</tr>
<tr>
<td>coverPic</td>
<td>string</td>
<td>商家主图</td>
</tr>
<tr>
<td>pics</td>
<td>json</td>
<td>轮播图</td>
</tr>
<tr>
<td>tags</td>
<td>string</td>
<td>商家标签(逗号隔开)</td>
</tr>
<tr>
<td>monthSale</td>
<td>int</td>
<td>月销量</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code>{
"code": "0000",
"msg": "操作成功!",
"data":[
{
"id": 4,
"mallId": 1,
"shopCode": "1254284350204284928",
"shopSecret": "",
"shopName": "店铺2",
"companyName": "",
"type": 2,
"categoryId": 0,
"categoryName": "",
"linkman": "张三",
"phone": "13966585741",
"address": "测试地址i",
"remark": "商家描述",,
"monthSale": 16,
"coverPic": "xxx",
"pics": "xxx",
"tags": "泡椒牛蛙,糖炒栗子",
"contractImage": "",
"verifier": "",
"status": 0,
"notifyUrl": "",
"creator": "admin",
"createTime": "2020-04-26 13:41:07",
"modifier": "admin",
"modifyTime": "2020-05-29 14:03:35"
}
]
}</code></pre>