feiyu02
2025-10-30 9cb8d7e0f4ffca386b14a15f8a0aca4d1db23252
src/main/kotlin/cn/flightfeather/supervision/lightshare/web/CityController.kt
@@ -1,12 +1,14 @@
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