| | |
| | | */ |
| | | @ResponseBody |
| | | @PostMapping("/queryOpenCity") |
| | | @ApiOperation(value = "获取开通城市列表【1.0】", tags = {"用户端-首页"}, notes = "") |
| | | @ApiOperation(value = "获取开通城市列表", tags = {"用户端-首页"}, notes = "") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(value = "语言(1=中文,2=英文,3=法语)", name = "language", required = false, dataType = "int"), |
| | | @ApiImplicitParam(name = "Authorization", value = "Bearer +token", required = false, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9.....") |
| | |
| | | */ |
| | | @ResponseBody |
| | | @PostMapping("/queryBusiness") |
| | | @ApiOperation(value = "根据当前定位获取业务类型【1.0】", tags = {"用户端-首页"}, notes = "") |
| | | @ApiOperation(value = "根据当前定位获取业务类型", tags = {"用户端-首页"}, notes = "") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(value = "纬度", name = "lat", required = true, dataType = "double"), |
| | | @ApiImplicitParam(value = "经度", name = "lnt", required = true, dataType = "double"), |
| | |
| | | */ |
| | | @ResponseBody |
| | | @PostMapping("/openCity") |
| | | @ApiOperation(value = "判断当前是否是开通城市【1.0】", tags = {"用户端-首页"}) |
| | | @ApiOperation(value = "判断当前是否是开通城市", tags = {"用户端-首页"}) |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(value = "纬度", name = "lat", required = true, dataType = "String"), |
| | | @ApiImplicitParam(value = "经度", name = "lnt", required = true, dataType = "String") |
| | |
| | | |
| | | @ResponseBody |
| | | @PostMapping("/getCity") |
| | | @ApiOperation(value = "获取省市联动【1.0】", tags = {"用户端-首页"}) |
| | | @ApiOperation(value = "获取省市联动", tags = {"用户端-首页"}) |
| | | public ResultUtil<List<CityCopy>> getCity(Integer pid){ |
| | | List<CityCopy> pid1 = cityCopyService.selectList(new EntityWrapper<CityCopy>().eq("pid", pid)); |
| | | return ResultUtil.success(pid1); |