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; } }