Showing
1 changed file
with
31 additions
and
0 deletions
@@ -409,6 +409,37 @@ or | @@ -409,6 +409,37 @@ or | ||
409 | } | 409 | } |
410 | ``` | 410 | ``` |
411 | 411 | ||
412 | +## 查询店铺下的品牌 | ||
413 | + | ||
414 | +> 接口名: `/ShopsRest/selectBrandsByShopId` | ||
415 | + | ||
416 | +### 入参 | ||
417 | +```json | ||
418 | +{ | ||
419 | + "shopsId":584 | ||
420 | +} | ||
421 | +``` | ||
422 | +------------------------- | ||
423 | +|属性名称|类型|例子|说明| | ||
424 | +|--------|----|----|----| | ||
425 | +|shopsId|int|584|店铺ID| | ||
426 | +----------------------------- | ||
427 | + | ||
428 | +### 返回 | ||
429 | + | ||
430 | +```json | ||
431 | +{ | ||
432 | + "code": 200, | ||
433 | + "data": [ | ||
434 | + { | ||
435 | + "id": 1503, | ||
436 | + "text": "PUAMA" | ||
437 | + } | ||
438 | + ], | ||
439 | + "message": "操作成功" | ||
440 | +} | ||
441 | +``` | ||
442 | + | ||
412 | ## 获取所有身份 | 443 | ## 获取所有身份 |
413 | 444 | ||
414 | > 接口名: `/EnumListRest/getEnumList` | 445 | > 接口名: `/EnumListRest/getEnumList` |
-
Please register or login to post a comment