EquipmentException.java
2.26 KB
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
package com.ruoyi.eexception.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;
/**
* 设备异常记录对象 equipment_exception
*
* @author guzijian
* @date 2023-07-04
*/
public class EquipmentException extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** 主键 */
private Long id;
/** 标题 */
@Excel(name = "标题")
private String title;
/** 设备ip */
@Excel(name = "设备ip")
private String equipmentIp;
/** 人员工号 */
@Excel(name = "人员工号")
private String jobCode;
/** 设备图片 */
@Excel(name = "设备图片")
private String image;
/** 处理状态 */
@Excel(name = "处理状态")
private Integer status;
public void setId(Long id)
{
this.id = id;
}
public Long getId()
{
return id;
}
public void setTitle(String title)
{
this.title = title;
}
public String getTitle()
{
return title;
}
public void setEquipmentIp(String equipmentIp)
{
this.equipmentIp = equipmentIp;
}
public String getEquipmentIp()
{
return equipmentIp;
}
public void setJobCode(String jobCode)
{
this.jobCode = jobCode;
}
public String getJobCode()
{
return jobCode;
}
public void setImage(String image)
{
this.image = image;
}
public String getImage()
{
return image;
}
public void setStatus(Integer status)
{
this.status = status;
}
public Integer getStatus()
{
return status;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("id", getId())
.append("title", getTitle())
.append("equipmentIp", getEquipmentIp())
.append("createTime", getCreateTime())
.append("jobCode", getJobCode())
.append("image", getImage())
.append("status", getStatus())
.append("remark", getRemark())
.toString();
}
}