仪表盘
版本库
文件存储
活动
搜索
登录
main
/
underway-spring
走航监测后台
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
1. 更新数据查询接口
riku
2021-03-01
7a3654aaebf1d75303a90f3dc574881b0199779c
[underway-spring.git]
/
src
/
main
/
kotlin
/
com
/
flightfeather
/
uav
/
lightshare
/
service
/
RealTimeDataService.kt
1
2
3
4
5
6
7
8
9
package com.flightfeather.uav.lightshare.service
import com.flightfeather.uav.lightshare.bean.BaseResponse
import com.flightfeather.uav.lightshare.bean.DataVo
interface RealTimeDataService {
fun getSecondData(deviceCode: String?, page: Int?, perPage: Int?): BaseResponse<List<DataVo>>
}