wangmengzhao
2023-12-13 d8228730095cdcaccb40dd2dc290fc44779e340a
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
package com.ruoyi.iot.dto;
 
/**
 * @author wmz
 * @version v1.0
 * @ClassName DeviceFilterDto
 * @description TODO
 * @createTime 2023/12/13 17:55
 */
 
public class DeviceFilterDto {
 
    /**
     * 设备ID
     */
    private Long deviceId;
    /**
     * 设备名称
     */
    private String deviceName;
    /**
     * 客户姓名
     */
    private String userName;
    /**
     * 客户手机号
     */
    private String userPhone;
 
    /**
     * 滤芯寿命A的物模型值
     */
    private Integer FilterAValue;
    /**
     * 滤芯寿命B的物模型值
     */
    private Integer FilterBValue;
    /**
     * 滤芯寿命C的物模型值
     */
    private Integer FilterCValue;
    /**
     * 滤芯寿命D的物模型值
     */
    private Integer FilterDValue;
 
    public DeviceFilterDto() {
    }
 
    public DeviceFilterDto(Long deviceId, String deviceName, String user_name, String user_phone, Integer filterAValue, Integer filterBValue, Integer filterCValue, Integer filterDValue) {
        this.deviceId = deviceId;
        this.deviceName = deviceName;
        this.userName = user_name;
        this.userPhone = user_phone;
        this.FilterAValue = filterAValue;
        this.FilterBValue = filterBValue;
        this.FilterCValue = filterCValue;
        this.FilterDValue = filterDValue;
 
    }
 
    public String getDeviceName() {
        return deviceName;
    }
 
    public void setDeviceName(String deviceName) {
        this.deviceName = deviceName;
    }
 
    public String getUserName() {
        return userName;
    }
 
    public void setUserName(String userName) {
        this.userName = userName;
    }
 
    public String getUserPhone() {
        return userPhone;
    }
 
    public void setUserPhone(String userPhone) {
        this.userPhone = userPhone;
    }
 
    public Integer getFilterAValue() {
        return FilterAValue;
    }
 
    public void setFilterAValue(Integer filterAValue) {
        FilterAValue = filterAValue;
    }
 
    public Integer getFilterBValue() {
        return FilterBValue;
    }
 
    public void setFilterBValue(Integer filterBValue) {
        FilterBValue = filterBValue;
    }
 
    public Integer getFilterCValue() {
        return FilterCValue;
    }
 
    public void setFilterCValue(Integer filterCValue) {
        FilterCValue = filterCValue;
    }
 
    public Integer getFilterDValue() {
        return FilterDValue;
    }
 
    public void setFilterDValue(Integer filterDValue) {
        FilterDValue = filterDValue;
    }
}