地质所 沉降监测网建设项目
chenhuan
2024-05-16 0fdd42e318f51f9e3c6581473416af1cca69877f
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
package com.javaweb.geo.domain;
 
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.javaweb.common.annotation.Excel;
import com.javaweb.common.core.domain.BaseEntity;
import java.util.Date;
 
/**
 * 异常处理对象 js_handle_exception
 * 
 * @author cxy
 * @date 2022-11-14
 */
public class HandleException extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 主键 */
    private String ids;
 
    /** 企业ID */
    @Excel(name = "企业ID")
    private String companyId;
 
    /** 异常描述 */
    @Excel(name = "异常描述")
    private String description;
 
    /** 处理状态(0-未处理,1-已处理) */
    @Excel(name = "处理状态", readConverterExp = "0-未处理,1-已处理")
    private String handleStatus;
 
    /** 勘探点编号 */
    @Excel(name = "勘探点编号")
    private String holeCode;
 
    /** 勘探点ID */
    @Excel(name = "勘探点ID")
    private String holeId;
 
    /** 异常等级(1-轻微,2-一般,3-严重,9-未分级) */
    @Excel(name = "异常等级", readConverterExp = "1-轻微,2-一般,3-严重,9-未分级")
    private String level;
 
    /** 异常时间(勘探点基准定位时间) */
    @Excel(name = "异常时间", readConverterExp = "勘探点基准定位时间")
    private Date mapTime;
 
    /** 项目序列号 */
    @Excel(name = "项目序列号")
    private String projectId;
 
    private String projectName;
 
    /** 异常类型(1-距离异常,2-时间异常,3-未定位异常,4-(未使用),5-人员异常) */
    @Excel(name = "异常类型", readConverterExp = "1-距离异常,2-时间异常,3-未定位异常,4-(未使用),5-人员异常")
    private String type;
 
 
    /** 是否删除(0 未删除 1删除) */
    @Excel(name = "是否删除", readConverterExp = "0未删除,1删除")
    private Boolean isDelete;
 
    public void setIds(String ids) 
    {
        this.ids = ids;
    }
 
    public String getIds() 
    {
        return ids;
    }
    public void setCompanyId(String companyId) 
    {
        this.companyId = companyId;
    }
 
    public String getCompanyId()
    {
        return companyId;
    }
 
    public void setDescription(String description)
    {
        this.description = description;
    }
 
    public String getDescription() 
    {
        return description;
    }
    public void setHandleStatus(String handleStatus) 
    {
        this.handleStatus = handleStatus;
    }
 
    public String getHandleStatus() 
    {
        return handleStatus;
    }
    public void setHoleCode(String holeCode) 
    {
        this.holeCode = holeCode;
    }
 
    public String getHoleCode() 
    {
        return holeCode;
    }
    public void setHoleId(String holeId) 
    {
        this.holeId = holeId;
    }
 
    public String getHoleId() 
    {
        return holeId;
    }
    public void setLevel(String level) 
    {
        this.level = level;
    }
 
    public String getLevel() 
    {
        return level;
    }
    public void setMapTime(Date mapTime) 
    {
        this.mapTime = mapTime;
    }
 
    public Date getMapTime() 
    {
        return mapTime;
    }
    public void setProjectId(String projectId) 
    {
        this.projectId = projectId;
    }
 
    public String getProjectId() 
    {
        return projectId;
    }
    public void setType(String type) 
    {
        this.type = type;
    }
 
    public String getProjectName() {
        return projectName;
    }
 
    public void setProjectName(String projectName) {
        this.projectName = projectName;
    }
 
    public String getType()
    {
        return type;
    }
    public void setIsDelete(Boolean isDelete)
    {
        this.isDelete = isDelete;
    }
 
    public Boolean getIsDelete()
    {
        return isDelete;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("ids", getIds())
            .append("companyId", getCompanyId())
            .append("description", getDescription())
            .append("handleStatus", getHandleStatus())
            .append("holeCode", getHoleCode())
            .append("holeId", getHoleId())
            .append("level", getLevel())
            .append("mapTime", getMapTime())
            .append("projectId", getProjectId())
            .append("projectName", getProjectName())
            .append("type", getType())
            .append("isDelete", getIsDelete())
            .toString();
    }
}