feiyu02
2021-12-16 49832a5bba94c816e83e7e74095106643f0a433e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.flightfeather.uav.lightshare.service
 
import com.flightfeather.uav.lightshare.bean.BaseResponse
import com.flightfeather.uav.lightshare.bean.GridVo
import com.flightfeather.uav.socket.eunm.UWDeviceType
 
interface EPWModelService {
 
    /**
     * 网格分析分析
     * @param type 数据源类型 @see [UWDeviceType], 0a,0b,0c,0d
     * @param len 网格长度
     */
    fun getEpwModelResult(deviceCode: String, startTime: String, endTime: String, len: Double): BaseResponse<List<GridVo>>
 
}