feiyu02
2025-06-04 cc2a28ad6b99795d05cd9c923d8f7da27b4509e3
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)
}