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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
package com.ruoyi.iot.domain;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import org.springframework.stereotype.Component;
 
import java.io.Serializable;
import java.util.Date;
 
@Component
public class DeviceFilter extends BaseEntity {
    private static final long serialVersionUID = 1L;
    /**
     * ID
     */
    private Long  filteId ;
    /**
     * 滤芯名称
     */
    @Excel(name = "滤芯名称")
    private String filteName;
    /**
     * 用户id
     */
    @Excel(name = "用户id")
    private Long  userId;
    /**
     * 设备id
     */
    @Excel(name = "设备id")
    private Long  deviceId;
    /**
     * 设备名称
     */
    @Excel(name = "设备名称")
    private String deviceName;
    /**
     * 备注
     */
    @Excel(name = "备注")
    private String remarks;
    /**
     * 滤芯寿命
     */
    @Excel(name = "滤芯寿命")
    private String filterLife;
    /**
     * 状态
     */
    @Excel(name = "状态")
    private String status;
    /**
     * 开始时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "分派时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date createTime;
    /**
     * 最后操作时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "最后操作时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date updateTime;
    public void setFilteId(Long filteId) {
        this.filteId = filteId;
    }
    public Long getFilteId() {
        return filteId;
    }
    public void setFilteName(String filteName) {
        this.filteName = filteName;
    }
    public String getFilteName() {
        return filteName;
    }
 
    public void setUserId(Long userId) {
        this.userId = userId;
    }
 
    public Long getUserId() {
        return userId;
    }
 
 
    public void setDeviceId(Long deviceId) {
        this.deviceId = deviceId;
    }
 
    public Long getDeviceId() {
        return deviceId;
    }
 
    public String getDeviceName() {
        return deviceName;
    }
 
    public void setDeviceName(String deviceName) {
        this.deviceName = deviceName;
    }
    public String getRemarks() {
        return remarks;
    }
    public void setRemarks(String remarks) {
        this.remarks = remarks;
    }
    public String getFilterLife() {
        return filterLife;
    }
    public void setFilterLife(String filterLife) {
        this.filterLife = filterLife;
    }
 
    public String getStatus() {
        return status;
    }
 
    public void setStatus(String status) {
        this.status = status;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
                .append("filteId", getFilteId())
                .append("filteName", getFilteName())
                .append("userId", getUserId())
                .append("deviceId", getDeviceId())
                .append("deviceName", getDeviceName())
                .append("remarks", getRemarks())
                .append("filterLife", getFilterLife())
                .append("status", getStatus())
                .append("createTime", getCreateTime())
                .append("updateTime", getUpdateTime())
                .toString();
    }
}