|
|
@ -68,10 +68,10 @@ public class IndexApiController { |
|
|
|
} |
|
|
|
|
|
|
|
//根据景区id获取该景区下的地点列表-景点/厕所/美食店铺/民宿 |
|
|
|
@ApiOperation(value="小程序-根据景区id获取该景区下的地点列表-景点/厕所/美食店铺/民宿", notes="1-景区,2-厕所,3-美食店铺,4-民宿") |
|
|
|
@ApiOperation(value="小程序-根据景区id获取该景区下的地点列表:景点/厕所/美食店铺/民宿", notes="小程序-根据景区id获取该景区下的地点列表:景点/厕所/美食店铺/民宿") |
|
|
|
@RequestMapping(value = "/querySpotList", method = {RequestMethod.GET}) |
|
|
|
public Result<?> querySpotList(String areaId, int spotType){ |
|
|
|
return indexApiService.querySpotList(areaId, spotType); |
|
|
|
public Result<?> querySpotList(String areaId, String categoryId){ |
|
|
|
return indexApiService.querySpotList(areaId, categoryId); |
|
|
|
} |
|
|
|
|
|
|
|
//根据角色类型获取角色信息列表-讲解员/达人/摄影师 |
|
|
|