tjx
2 天以前 88a106141826b817a6d4b8e41c48160cef011f5e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package com.hk.NumericalCollection.service;
 
import com.hk.NumericalCollection.dto.ApiDataResult;
import com.hk.NumericalCollection.dto.NumbericalDto;
import com.hk.NumericalCollection.entity.DeviceRealTimeData;
 
import java.io.IOException;
 
public interface INumericalService {
 
 
    /**
     * 获取所以的设备列表
     *
     * @return void
     * @author tjx
     * @date 2024/9/26 20:38
     */
    boolean SoDeviceList() throws Exception;
 
    /**
     * 根据设备编号获取设备的最近一条数据信息
     *
     * @return void
     * @author tjx
     * @description TODO
     * @date 2024/9/26 20:41
     */
    void getDeviceRealTimeData(String uid) throws Exception;
 
    void getDeviceRealTimeDataBycl(String uid) throws Exception;
 
    /**
     * 获取设备一个自然日的运行情况
     *
     * @return void
     * @author tjx
     * @description TODO
     * @date 2024/9/26 20:41
     */
    void getDeviceDayCount(String uid, String date) throws IOException;
 
    ApiDataResult<DeviceRealTimeData> getDeviceRealTimeDataApiDataResult(String uid) throws Exception;
 
    boolean RefreshDev(NumbericalDto barcode);
 
    boolean RefreshDevBycl(NumbericalDto barcode);
}