| | |
| | | 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 |