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);
|
| }
|
|