仪表盘
版本库
文件存储
活动
搜索
登录
main
/
underway-spring
走航监测后台
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
1. 新增走航任务增删改查相关功能 2. 新增无人船数据excel导入功能 3. 优化多参数接收逻辑,解决单个数据头导致数据包结构判断错误问题
riku
2021-06-11
070005ffba3ce5cb80e27448bca668aa25edee62
[underway-spring.git]
/
src
/
main
/
kotlin
/
com
/
flightfeather
/
uav
/
repository
/
AirDataRepository.kt
1
2
3
4
5
6
7
8
9
10
11
12
package com.flightfeather.uav.repository
import com.flightfeather.uav.socket.bean.AirDataPackage
/**
* @author riku
* Date: 2020/6/11
*/
interface AirDataRepository {
fun saveAirData(dataPackage: AirDataPackage): Int
}