查询券礼包详情
- 请求方式:post
- 参数类型:application/json
- 请求地址:http://域名/coupon/package/get
- 请求参数:
| 参数 |类型 | 是否必填 | 说明 |
| -------- |-------- | ------- | ------------------|
| id | integer | 是 | 券ID |
- 返回参数
| 参数 | 类型 |必须 | 说明 |
| --------- | -------- |-------- | ------------------ |
| code | integer | 是 | 状态码 200成功 |
| message | string | 是 | 消息 |
| timestamp | long | 是 | 时间戳 |
| data | array | 是 | 数据 |
| couponId | integer | 是 | 券包ID |
| couponName | string | 是 | 券包名称 |
| couponType | integer | 是 | 券包类型 |
| img | string | 是 | 券包图标 |
| getExpirationDate| string | 是 | 领取有效期 |
| storeNoOrName | string |否 | 门店编码/名称 |
| createBy | string | 是 | 创建人 |
| couponStatus| integer | 是 | 券状态|
- 返回样例
{
"code": 200,
"message": "查询成功!",
"timestamp": 1585218344000,
"data": {
"couponId": 2591,
"couponName": "名称1",
"couponType": 1,
"img": "xxxx",
"couponStatus": 1,
"getExpirationDate": "2019-06-01 00:00:00至2019-06-30 23:59:59",
"storeNoOrName": "深圳市东湖店"
}
}