src/main/kotlin/com/flightfeather/uav/lightshare/web/RealTimeDataController.kt
@@ -1,9 +1,11 @@ package com.flightfeather.uav.lightshare.web import com.flightfeather.uav.lightshare.service.RealTimeDataService import io.swagger.annotations.Api import org.springframework.web.bind.annotation.* import org.springframework.web.multipart.MultipartFile @Api(tags = ["走航监测数据API接口"]) @RestController @RequestMapping("air/realtime") class RealTimeDataController(val realTimeDataService: RealTimeDataService) {