Authored by chaogeng

plustar接口文档

  1 +plustar管理接口服务定义
  2 +---------------------
  3 +
  4 +
  5 +
  6 +## plustar分类列表查询
  7 +
  8 +> 接口名: '/guang/plustar/getList'
  9 +
  10 +### 入参
  11 +
  12 +-------------------------
  13 +|属性名称|类型|例子|说明|
  14 +|--------|----|----|----|
  15 +|brandType|String|1|频道id|
  16 +|status|String|1|品牌状态|
  17 +|brandId|String|432|品牌id|
  18 +|gender|String|1|性别|
  19 +---------------------
  20 +
  21 +### 返回
  22 +
  23 +``` json
  24 +{
  25 + "code":200,
  26 + "message":"操作成功",
  27 + "data": {
  28 + "list": [
  29 + {
  30 + "id": "57",
  31 + "bannerTitle": "纯粹纽约街头风格,纯粹纽约态度!", //banner标题
  32 + "brandId": "432", //品牌id
  33 + "brandName":"Married to the MOB", //品牌名称
  34 + "brandType": "1", //品牌类型
  35 + "categoryName": "潮流经典", //频道名称
  36 + "coverImg":"http://img10.static.yhbimg.com/yhb-img01/2015/05/21/21/016ebe9a51caff7fd634243f8063cfcf97.jpg?imageView/{mode}/w/{width}/h/{height}",//封面图
  37 + "gender": "3", //性别 1.男2.女3.通用
  38 + "isDifferent": "2", //是否区分男女 1区分 2不区分
  39 + "isRecommend": "2", //是否推荐 1推荐 2不推荐
  40 + "orderBy": "2", //排序
  41 + "status": "1", //是否可用 1可用 2不可用
  42 + "updateTime": 1449563008 //修改时间
  43 + }
  44 + ]
  45 + }
  46 +}
  47 +
  48 +```
  49 +
  50 +```