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,7 +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) }