地质所 沉降监测网建设项目
suerwei
2024-05-21 64ad299aca8826cad34f44a5dafac55ed84a36e5
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
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;
 
/**
 * 钻孔日志对象 js_hole_log
 * 
 * @author cxy
 * @date 2024-05-21
 */
public class HoleLog extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 主键 */
    private String id;
 
    /** 项目id */
    private String projectId;
 
    /** 钻孔id */
    private String holeId;
 
    /** 钻孔编号 */
    @Excel(name = "钻孔编号")
    private String code;
 
    /** 起始深度 */
    @Excel(name = "起始深度")
    private Double beginDepth;
 
    /** 终止深度 */
    @Excel(name = "终止深度")
    private Double endDepth;
 
    /** 描述员 */
    @Excel(name = "描述员")
    private String recordPerson;
 
    /** 描述备注 */
    @Excel(name = "描述备注")
    private String description;
 
    /** 是否删除 */
    private String isDelete;
 
    public void setId(String id) 
    {
        this.id = id;
    }
 
    public String getId() 
    {
        return id;
    }
    public void setProjectId(String projectId) 
    {
        this.projectId = projectId;
    }
 
    public String getProjectId() 
    {
        return projectId;
    }
    public void setHoleId(String holeId) 
    {
        this.holeId = holeId;
    }
 
    public String getHoleId() 
    {
        return holeId;
    }
    public void setCode(String code) 
    {
        this.code = code;
    }
 
    public String getCode() 
    {
        return code;
    }
    public void setBeginDepth(Double beginDepth) 
    {
        this.beginDepth = beginDepth;
    }
 
    public Double getBeginDepth() 
    {
        return beginDepth;
    }
    public void setEndDepth(Double endDepth) 
    {
        this.endDepth = endDepth;
    }
 
    public Double getEndDepth() 
    {
        return endDepth;
    }
    public void setRecordPerson(String recordPerson) 
    {
        this.recordPerson = recordPerson;
    }
 
    public String getRecordPerson() 
    {
        return recordPerson;
    }
    public void setDescription(String description) 
    {
        this.description = description;
    }
 
    public String getDescription() 
    {
        return description;
    }
    public void setIsDelete(String isDelete) 
    {
        this.isDelete = isDelete;
    }
 
    public String getIsDelete() 
    {
        return isDelete;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("projectId", getProjectId())
            .append("holeId", getHoleId())
            .append("code", getCode())
            .append("beginDepth", getBeginDepth())
            .append("endDepth", getEndDepth())
            .append("createTime", getCreateTime())
            .append("recordPerson", getRecordPerson())
            .append("description", getDescription())
            .append("isDelete", getIsDelete())
            .toString();
    }
}