feiyu02
2021-11-22 d04e699fcd11aa715439d8ab87827a3984450ccd
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.flightfeather.uav.lightshare.service
 
import com.flightfeather.uav.domain.entity.Mission
import com.flightfeather.uav.lightshare.bean.BaseResponse
 
interface MissionService {
 
    fun getMission(type: String?, page: Int?, perPage: Int?): BaseResponse<List<Mission>>
 
    fun createMission(mission: Mission): BaseResponse<Boolean>
 
    fun deleteMission(missionCode: String): BaseResponse<Boolean>
}