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>>
|
| }
|
|