feiyu02
2024-05-31 da431c25dfe5122e4ed70372da36ede3e4eaec4a
src/main/kotlin/com/flightfeather/uav/lightshare/service/MissionService.kt
@@ -2,6 +2,7 @@
import com.flightfeather.uav.domain.entity.Mission
import com.flightfeather.uav.lightshare.bean.BaseResponse
import javax.servlet.http.HttpServletResponse
interface MissionService {
@@ -10,4 +11,8 @@
    fun createMission(mission: Mission): BaseResponse<Boolean>
    fun deleteMission(missionCode: String): BaseResponse<Boolean>
    fun deleteMissionAndData(missionCode: String): Boolean
    fun getReport(missionCode: String, response: HttpServletResponse)
}