wangmengzhao
2023-12-14 49e831cf8850ce5b22ce1b6ba5e9f818243ccf1c
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
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 String FilterA;
    /**
     * 滤芯寿命B的物模型值
     */
    private String FilterB;
    /**
     * 滤芯寿命C的物模型值
     */
    private String FilterC;
    /**
     * 滤芯寿命D的物模型值
     */
    private String FilterD;
 
    public DeviceFilterDto() {
    }
 
    public DeviceFilterDto(Long deviceId, String deviceName, String user_name, String user_phone, String FilterA, String FilterB, String FilterC, String FilterD) {
        this.deviceId = deviceId;
        this.deviceName = deviceName;
        this.userName = user_name;
        this.userPhone = user_phone;
        this.FilterA = FilterA;
        this.FilterB = FilterB;
        this.FilterC = FilterC;
        this.FilterD = FilterD;
 
    }
 
    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 Long getDeviceId() {
        return deviceId;
    }
 
    public String getFilterA() {
        return FilterA;
    }
 
    public String getFilterB() {
        return FilterB;
    }
 
    public String getFilterC() {
        return FilterC;
    }
 
    public String getFilterD() {
        return FilterD;
    }
}