src/main/kotlin/cn/flightfeather/supervision/lightshare/web/TownController.kt
@@ -1,5 +1,6 @@
package cn.flightfeather.supervision.lightshare.web
import cn.flightfeather.supervision.config.IgnoreResponseAdvice
import cn.flightfeather.supervision.domain.ds1.entity.Town
import cn.flightfeather.supervision.lightshare.service.TownService
import io.swagger.annotations.Api
@@ -7,6 +8,7 @@
@Api(tags = ["TownController"], description = "街镇API接口")
@RestController
@IgnoreResponseAdvice
@RequestMapping("/town")
class TownController(val townService: TownService){
    @GetMapping