年度账单.md 1.29 KB

1、根据uid和year获取年度账单

/activity/YearMemberBillController/getBillByUid

请求参数

参数名称 参数类型 可否为空 示例 默认值 备注
uid int 20364598 null 用户ID
year string 2016

接口说明

注意,通用的头部没有列出。
请求示例
http://192.168.102.14:8090/activity/YearMemberBillController/getBillByUid?uid=111&year=111&debug=XYZ

响应

code为200即为成功,否则是失败。 响应参数,data部分
uid:uid

orderNum : 订单数量

buyNum : 购买商品数量

orderAmount : 订单金额

kilo : 累计公里数

score : 潮流得分

beat : 击败潮流占比

nickname : 昵称

phone : 手机号

year : 年份

hasBill : 是否有账单 true有账单,false无账单

title : 对应形象 1.有钱又有颜的捧场王 2.百变潮流咖 3.潮流夯货 4.潮流新星 5.实力潮流潜力股

响应成功JSON格式如下所示:

{
  "code": 200,
  "message": "success",
  "md5": "",
  "data": {
    "uid": 111,
    "orderNum": 11,
    "buyNum": 11,
    "orderAmount": 11,
    "kilo": 11,
    "score": 93,
    "beat": 11,
    "nickname": null,
    "phone": null,
    "year": "111",
    "hasBill": true,
    "title": 4
  }
}