...
|
...
|
@@ -42,6 +42,8 @@ |
|
|
|
|
|
2、根据id获取套餐详情:ActivityConfigController/getFrontActivityInfoById
|
|
|
|
|
|
3、获取所有摄影所有套餐可预约日期:ActivityConfigController/getAppointDateForPhoto
|
|
|
|
|
|
|
|
|
## 返回参数说明 ##
|
|
|
|
...
|
...
|
@@ -915,4 +917,39 @@ http://192.168.102.210:8080/portal-gateway/ActivityConfigController/getAppointTi |
|
|
"data": ""
|
|
|
}
|
|
|
|
|
|
## 3、获取所有潮流顾问可预约时间 ##
|
|
|
|
|
|
入口:ActivityConfigController/getAppointDateForPhoto
|
|
|
|
|
|
**请求参数**
|
|
|
|
|
|
| 参数名称 | 参数类型| 长度 |可否为空 |示例 |默认值 | 备注 |
|
|
|
| ---------|:--------:| --------:|-----:|------:|------:|------:|
|
|
|
|activityType |int | 11 |否 | | |4-摄影套餐|
|
|
|
|storeId |int | 11 |否 | | |门店id|
|
|
|
|isFront |int | 11 |是 |1 | 1 |1|
|
|
|
|
|
|
**请求示例**
|
|
|
|
|
|
注意,通用的头部没有列出。
|
|
|
|
|
|
http://172.16.6.207:8080/portal-gateway/ActivityConfigController/getAppointDateForPhoto
|
|
|
|
|
|
{
|
|
|
"activityType":3,
|
|
|
"storeId":66,
|
|
|
"isFront":1
|
|
|
}
|
|
|
|
|
|
**响应**
|
|
|
|
|
|
{
|
|
|
"code": 200,
|
|
|
"message": "success",
|
|
|
"data": {
|
|
|
"2016/12/21": "周三",
|
|
|
"2016/12/22": "周四",
|
|
|
"2016/12/23": "周五"
|
|
|
}
|
|
|
}
|
|
|
|
...
|
...
|
|