src/main/kotlin/cn/flightfeather/supervision/lightshare/web/CityController.kt
@@ -1,5 +1,6 @@
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
@@ -7,6 +8,7 @@
@Api(tags = ["CityController"], description = "城市信息API接口")
@RestController
@IgnoreResponseAdvice
@RequestMapping("/city")
class CityController(val cityService: CityService){
    @GetMapping