chenzx
2024-02-20 77847fe500de2519cba82d1a5ef03d055739f0d7
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.ruoyi.iot.service;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.iot.domain.DeviceFilter;
import java.util.List;
 
import com.ruoyi.iot.model.ThingsModels.ThingsModelValuesInput;
 
 
public interface IDeviceFilterService {
 
 
 
    /**
     * 全查询
     *
     * @param
     * @return 结果
     */
    public List<DeviceFilter> selectFilterAll() throws Exception;
 
    /**
     * 新增滤水器信息
     *
     * @param deviceFilter 调度信息
     * @return 结果
     */
    public AjaxResult insertFilter(DeviceFilter deviceFilter);
 
 
 
    /**
     * 修改滤水器信息
     *
     * @param deviceFilter 调度信息
     * @return 结果
     */
 
    public AjaxResult updateFilter(DeviceFilter deviceFilter) throws Exception;
 
    /**
     * 低寿命滤芯导入
     *
     * @param input
     * @return
     */
    public int reportDeviceThingsModelValueFilter(ThingsModelValuesInput input, int type, boolean isShadow);
 
}