wang-hao-jie
2022-08-25 57dcc73636bb7d8dce89c808eb8cc988a7512264
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
package com.ruoyi.station.domain;
 
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
 
import java.util.Date;
 
/**
 * 设备状态内容对象 mj_equipment
 * 
 * @author ruoyi
 * @date 2020-08-24
 */
public class MjEquipment extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** id */
    private String id;
 
    /** 在线状态 */
    @Excel(name = "在线状态")
    private String content;
 
    /** null */
    @Excel(name = "null")
    private Integer status;//0不正常  1:正常
 
    /** null */
    @Excel(name = "null")
    private Integer equipmentType;
 
    /** 端口 */
    @Excel(name = "端口")
    private String port;
 
    private String doorName;
 
    private Date startTime;
 
    private Date endTime;
 
    private String areaName;
 
    public String getAreaName() {
        return areaName;
    }
 
    public void setAreaName(String areaName) {
        this.areaName = areaName;
    }
 
    public Date getStartTime() {
        return startTime;
    }
 
    public void setStartTime(Date startTime) {
        this.startTime = startTime;
    }
 
    public Date getEndTime() {
        return endTime;
    }
 
    public void setEndTime(Date endTime) {
        this.endTime = endTime;
    }
 
    public String getDoorName() {
        return doorName;
    }
 
    public void setDoorName(String doorName) {
        this.doorName = doorName;
    }
 
    public void setId(String id)
    {
        this.id = id;
    }
 
    public String getId() 
    {
        return id;
    }
    public void setContent(String content) 
    {
        this.content = content;
    }
 
    public String getContent() 
    {
        return content;
    }
    public void setStatus(Integer status) 
    {
        this.status = status;
    }
 
    public Integer getStatus() 
    {
        return status;
    }
    public void setEquipmentType(Integer equipmentType) 
    {
        this.equipmentType = equipmentType;
    }
 
    public Integer getEquipmentType() 
    {
        return equipmentType;
    }
    public void setPort(String port) 
    {
        this.port = port;
    }
 
    public String getPort() 
    {
        return port;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("content", getContent())
            .append("status", getStatus())
            .append("equipmentType", getEquipmentType())
            .append("port", getPort())
            .append("createTime", getCreateTime())
            .append("updateTime", getUpdateTime())
            .append("createBy", getCreateBy())
            .append("updateBy", getUpdateBy())
            .toString();
    }
}