| | |
| | | package cn.flightfeather.supervision.lightshare.web |
| | | |
| | | import cn.flightfeather.supervision.config.IgnoreResponseAdvice |
| | | import cn.flightfeather.supervision.domain.ds1.entity.City |
| | | import cn.flightfeather.supervision.lightshare.service.CityService |
| | | import io.swagger.annotations.Api |
| | | import org.springframework.web.bind.annotation.* |
| | | |
| | | @Api(tags = ["CityController"], description = "城市信息API接口") |
| | | @Api(tags = ["城市信息API接口"], description = "城市信息API接口") |
| | | @RestController |
| | | @IgnoreResponseAdvice |
| | | @RequestMapping("/city") |
| | | class CityController(val cityService: CityService){ |
| | | @GetMapping |