管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-11-20 d7e3011a44a85f32aaab975f603f17a9bec198c5
src/main/java/com/lf/server/entity/md/MdZxcgEntity.java
@@ -1,16 +1,15 @@
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 com.lf.server.entity.all.BaseGeoEntity;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import java.io.Serializable;
import java.sql.Timestamp;
/**
 * 中线成果表
@@ -21,11 +20,9 @@
@AllArgsConstructor
@TableName("md.md_zxcg")
@ExcelHead(headRows = 1)
public class MdZxcgEntity implements Serializable {
@EqualsAndHashCode(callSuper = true)
public class MdZxcgEntity extends BaseGeoEntity implements Serializable {
    private static final long serialVersionUID = 686714648588893312L;
    @TableId(type = IdType.AUTO)
    private Integer gid;
    @ExcelProperty(index = 0)
    private String zh;
@@ -44,14 +41,6 @@
    @ExcelProperty(index = 5)
    private Double z;
    private Integer createUser;
    private Timestamp createTime;
    private Integer updateUser;
    private Timestamp updateTime;
    public String getZh() {
        return zh;
@@ -99,45 +88,5 @@
    public void setZ(Double z) {
        this.z = z;
    }
    public Integer getGid() {
        return gid;
    }
    public void setGid(Integer gid) {
        this.gid = gid;
    }
    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;
    }
}