|
|
@@ -792,13 +792,13 @@ public class StoreInfoController {
|
|
|
@ApiImplicitParams({
|
|
|
@ApiImplicitParam(name = "lon", value = "经度", dataType = "double", paramType = "query", required = true),
|
|
|
@ApiImplicitParam(name = "lat", value = "纬度", dataType = "double", paramType = "query", required = true),
|
|
|
- @ApiImplicitParam(name = "category", value = "一级分类", dataType = "int", paramType = "query", required = true),
|
|
|
- @ApiImplicitParam(name = "subCategory", value = "二级分类", dataType = "int", paramType = "query"),
|
|
|
- @ApiImplicitParam(name = "threeCategory", value = "二级分类", dataType = "int", paramType = "query")
|
|
|
+ @ApiImplicitParam(name = "businessSection", value = "经营板块", dataType = "String", paramType = "query", required = true),
|
|
|
+ @ApiImplicitParam(name = "businessTypes", value = "经营分类", dataType = "String", paramType = "query"),
|
|
|
+ @ApiImplicitParam(name = "businessClassify", value = "分类", dataType = "String", paramType = "query")
|
|
|
})
|
|
|
- public R<List<StoreInfoVo>> getMoreRecommendedStores(Double lon , Double lat, int category, int subCategory, int threeCategory) {
|
|
|
- log.info("StoreInfoController.getMoreRecommendedStores?lon={},lat={},category={},subCategory={}", lon,lat, subCategory, threeCategory);
|
|
|
- return R.data(storeInfoService.getMoreRecommendedStores(lon,lat, category, subCategory, threeCategory));
|
|
|
+ public R<List<StoreInfoVo>> getMoreRecommendedStores(Double lon , Double lat, String businessSection, String businessTypes, String businessClassify) {
|
|
|
+ log.info("StoreInfoController.getMoreRecommendedStores?lon={},lat={},businessSection={},businessTypes={},businessClassify={}", lon,lat, businessSection, businessTypes, businessClassify);
|
|
|
+ return R.data(storeInfoService.getMoreRecommendedStores(lon,lat, businessSection, businessTypes, businessClassify));
|
|
|
|
|
|
}
|
|
|
/**
|