| | |
| | | package com.dji.sample.log.service; |
| | | |
| | | import com.dji.sample.common.model.PaginationData; |
| | | import com.dji.sample.log.model.entity.DroneFlightLogEntity; |
| | | import com.dji.sample.log.model.entity.DroneFlightLogInfoEntity; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @PROJECT_NAME: iot_drone_api |
| | |
| | | */ |
| | | public interface IDroneFlightLogService { |
| | | |
| | | PaginationData<DroneFlightLogEntity> selectDroneFlightLog(long page, long pageSize,String workspaceId); |
| | | List<DroneFlightLogInfoEntity> listByFid(long flightId); |
| | | |
| | | void save(DroneFlightLogEntity entity); |
| | | |
| | | void update(DroneFlightLogEntity entity); |