getShopBrandRank.md 1.34 KB

获取店铺的品牌排名,当前等级、排名、上升名词

接口名: /bigdata/getShopBrandRank 例子(http://127.0.0.1:8091/bigdata/bigdata/getShopBrandRank)

方法

POST JSONRAW

入参


属性名称 类型 例子 说明 是否必填 长度限制
shopId number 店铺id Y
dateId number 日期 N 20160524

对应SQL的操作库表

  <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="com.yoho.bigData.dal.reqdao.BrandRanksDao" >
    select 
    <include refid="Base_Column_List" />
    from shop_brand_rank
    where 1=1
    <include refid="Select_BrandRanks"/>
    order by date_id desc limit 1
  </select>

错误编码


错误码code 消息 说明
200 查询成功!
401 参数错误!

返回

{
  "alg": "SALT_MD5",
  "code": 200,
  "data": {
    "brandId": 1200,
    "brandMainCategory": 2,
    "dateId": 20160524,
    "rankChange": 5,
    "rankLevel": 1,
    "rankLevelFlag": true, // 用于判断较上周同期字段 rankLevel 是否为空,如果为第一周,有可能为空,true为存在排名,false 为空
    "rankNow": 15
  },
  "md5": "64cdf0d30ba9174ddce76ecf71a91ad8",
  "message": "shop business overview."
}