feiyu02
2024-12-16 b3e273990fda27b68dfcf2c7f9d78311a5279885
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 {
@@ -9,5 +10,11 @@
    fun createMission(mission: Mission): BaseResponse<Boolean>
    fun updateMission(mission: Mission): BaseResponse<Boolean>
    fun deleteMission(missionCode: String): BaseResponse<Boolean>
    fun deleteMissionAndData(missionCode: String): Boolean
    fun getReport(missionCode: String, response: HttpServletResponse)
}