管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-11-16 944091a18721ccd38a7c583acf2a6c68fa457990
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
package com.lf.server.entity.md;
 
import com.alibaba.excel.annotation.ExcelProperty;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.lf.server.annotation.ExcelHead;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
 
import java.io.Serializable;
import java.sql.Timestamp;
 
/**
 * 中线成果表
 * @author WWW
 */
@Data
@NoArgsConstructor
@AllArgsConstructor
@TableName("md.md_zxcg")
@ExcelHead(headRows = 1)
public class MdZxcgEntity implements Serializable {
    private static final long serialVersionUID = 686714648588893312L;
 
    @TableId(type = IdType.AUTO)
    private Integer gid;
 
    @ExcelProperty(index = 0)
    private String zh;
 
    @ExcelProperty(index = 1)
    private Double zj;
 
    @ExcelProperty(index = 2)
    private Double lc;
 
    @ExcelProperty(index = 3)
    private Double x;
 
    @ExcelProperty(index = 4)
    private Double y;
 
    @ExcelProperty(index = 5)
    private Double z;
 
    private Integer pid;
 
    private Integer createUser;
 
    private Timestamp createTime;
 
    private Integer updateUser;
 
    private Timestamp updateTime;
 
    public Integer getGid() {
        return gid;
    }
 
    public void setGid(Integer gid) {
        this.gid = gid;
    }
 
    public String getZh() {
        return zh;
    }
 
    public void setZh(String zh) {
        this.zh = zh;
    }
 
    public Double getZj() {
        return zj;
    }
 
    public void setZj(Double zj) {
        this.zj = zj;
    }
 
    public Double getLc() {
        return lc;
    }
 
    public void setLc(Double lc) {
        this.lc = lc;
    }
 
    public Double getX() {
        return x;
    }
 
    public void setX(Double x) {
        this.x = x;
    }
 
    public Double getY() {
        return y;
    }
 
    public void setY(Double y) {
        this.y = y;
    }
 
    public Double getZ() {
        return z;
    }
 
    public void setZ(Double z) {
        this.z = z;
    }
 
    public Integer getPid() {
        return pid;
    }
 
    public void setPid(Integer pid) {
        this.pid = pid;
    }
 
    public Integer getCreateUser() {
        return createUser;
    }
 
    public void setCreateUser(Integer createUser) {
        this.createUser = createUser;
    }
 
    public Timestamp getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Timestamp createTime) {
        this.createTime = createTime;
    }
 
    public Integer getUpdateUser() {
        return updateUser;
    }
 
    public void setUpdateUser(Integer updateUser) {
        this.updateUser = updateUser;
    }
 
    public Timestamp getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Timestamp updateTime) {
        this.updateTime = updateTime;
    }
}