package com.dji.sample.log.service;
|
|
import com.dji.sample.log.model.entity.DroneFlightLogEntity;
|
|
/**
|
* @PROJECT_NAME: iot_drone_api
|
* @DESCRIPTION:
|
* @USER: aix
|
* @DATE: 2023/10/27 17:55
|
*/
|
public interface IDroneFlightLogService {
|
|
void save(DroneFlightLogEntity entity);
|
|
void update(DroneFlightLogEntity entity);
|
|
}
|