旅游攻略_主题推荐展示
<center></center>
[TOC]
简要描述
- 攻略首页——主题推荐展示
请求url
http://localhost:9000/article/strategies/themeCds
请求方式
- GET
封装VO对象参数
参数名 | 数据类型 | 说明 |
---|---|---|
themeName | String | 主题名称 |
tdestsype | List<Destination> | 对应主题下所有攻略目的地集合 |
返回示例
{
"msg": "success",
"code": 200,
"data": [{
"themeName": "户外",
"dests": [
{
"id": 355,
"name": "广州",
},
{
"id": 29,
"name": "上海",
},
]
},
{
"themeName": "购物",
"dests": [
{
"id": 355,
"name": "广州",
},
{
"id": 29,
"name": "上海",
}...
]
}]
}