xieb
2023-10-28 69f4eab5670f9aa5b5325e6d4d3a8e97f63106cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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);
 
}