src/main/kotlin/cn/flightfeather/supervision/lightshare/web/SiteController.kt
@@ -1,13 +1,15 @@
package cn.flightfeather.supervision.lightshare.web
import cn.flightfeather.supervision.config.IgnoreResponseAdvice
import cn.flightfeather.supervision.domain.ds1.entity.Site
import cn.flightfeather.supervision.lightshare.service.SiteService
import org.springframework.web.bind.annotation.*
import springfox.documentation.annotations.ApiIgnore
//fixme 2020.10.10 原用于存储工地信息,现已舍弃
@Deprecated("2020.10.10 原用于存储工地信息,现已舍弃")
@ApiIgnore
@RestController
@IgnoreResponseAdvice
@RequestMapping("/site")
class SiteController (val siteService: SiteService) {
    @GetMapping