Authored by qianjun

add shops

... ... @@ -409,6 +409,37 @@ or
}
```
## 查询店铺下的品牌
> 接口名: `/ShopsRest/selectBrandsByShopId`
### 入参
```json
{
"shopsId":584
}
```
-------------------------
|属性名称|类型|例子|说明|
|--------|----|----|----|
|shopsId|int|584|店铺ID|
-----------------------------
### 返回
```json
{
"code": 200,
"data": [
{
"id": 1503,
"text": "PUAMA"
}
],
"message": "操作成功"
}
```
## 获取所有身份
> 接口名: `/EnumListRest/getEnumList`
... ...