| | |
| | | @ApiOperation(notes = "模糊查询",value="百度地图定位根据省份查询所有该区域的机房") |
| | | public List serchByCondition(@RequestParam String address) { |
| | | BattMap_information binfo = new BattMap_information(); |
| | | binfo.setStationId(address); |
| | | binfo.setAddress(address); |
| | | List list = service.serchByCondition(binfo); |
| | | return list; |
| | | } |
| | |
| | | @ApiOperation(notes = "模糊查询",value="根据省份查询机房所在的所有城市") |
| | | public ServiceModel serchStationName2(@RequestParam String address) { |
| | | BattMap_information binfo = new BattMap_information(); |
| | | binfo.setStationId(address); |
| | | binfo.setAddress(address); |
| | | ServiceModel model = service.serchStationName2(binfo); |
| | | |
| | | return model; |
| | |
| | | @ApiOperation(notes = "模糊查询",value="根据省份和城市查询机房所在的所有机房") |
| | | public ServiceModel serchStationName(@RequestParam String address) { |
| | | BattMap_information binfo = new BattMap_information(); |
| | | binfo.setStationId(address); |
| | | binfo.setAddress(address); |
| | | ServiceModel model = service.serchStationName(binfo); |
| | | |
| | | return model; |