xieb
2024-03-22 1728457ec067a09c4a5dc8b6ab1921d7f2ad4eec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.dji.sample.log.service;
 
import com.dji.sample.log.model.entity.DroneFlightLogInfoEntity;
 
/**
 * @PROJECT_NAME: iot_drone_api
 * @DESCRIPTION:
 * @USER: aix
 * @DATE: 2023/10/28 10:57
 */
public interface IDroneFlightLogInfoService {
 
    void save(DroneFlightLogInfoEntity entity);
 
}