riku
2021-01-13 4db9806cc644bd58124aa9d8f1dbf9aee60d408f
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>>
}