riku
2021-02-03 df881fabbfbde09b9ec53b53e500d43ac314d736
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?, startTime: String?, endTime: String?, page: Int?, perPage: Int?): BaseResponse<List<DataVo>>
}