Authored by caoyan

add new interface

... ... @@ -114,5 +114,60 @@
```
## 查询优惠券活动分页列表
> 接口名:couponActivity/queryList
### 入参
-------------------------
|属性名称|类型|可否为空|例子|说明|
|--------|----|--------|----|----|
|page|int|是|2|页码,默认1|
|size|int|是|2|每页显示数量,默认10|
---------------------
### 返回
``` json
{
"code": 200,
"data": {
"list": [
{
"actName": "新客4.1-4.14",
"actUrl": "http://huodong.m.yohobuy.com/cuxiao/coupon/newuser5 ",
"activityType": 1,
"endTime": 1464689520,
"id": 560,
"shareDescribe": "",
"shareTitle": "",
"shareUrl": "",
"startTime": 1463479920,
"status": 1
},
{
"actName": "夏日新品节1",
"actUrl": " ",
"activityType": 2,
"endTime": 1461772800,
"id": 499,
"shareDescribe": "测试测试",
"shareTitle": "测试",
"shareUrl": "",
"startTime": 1460014500,
"status": 1
}
],
"page": 2,
"size": 2,
"total": 257,
"totalPage": 129
},
"md5": "1a84d2157829d541df4b5ec31412bbd3",
"message": "操作成功"
}
```
... ...