管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-11-23 c9190af38fd6fd9e71ca7db2b343e3a79f24ff5c
src/main/java/com/lf/server/entity/bd/DlgAgnpEntity.java
@@ -1,9 +1,8 @@
package com.lf.server.entity.bd;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.lf.server.entity.all.BaseGeoEntity;
import lombok.*;
import java.io.Serializable;
@@ -11,17 +10,15 @@
import java.sql.Timestamp;
/**
 * DlgAgnp
 * Dlgagnp
 * @author WWW
 */
@Data
@AllArgsConstructor
@TableName("bd.dlg_agnp")
public class DlgAgnpEntity implements Serializable {
    private static final long serialVersionUID = 44921918793079408L;
    @TableId(type = IdType.AUTO)
    private Integer gid;
@EqualsAndHashCode(callSuper = false)
public class DlgagnpEntity extends BaseGeoEntity implements Serializable {
    private static final long serialVersionUID = 128652141489392224L;
    private Long objectid;
@@ -38,18 +35,7 @@
    private String bsm;
    @TableField(select = false)
    private String geom;
    public DlgAgnpEntity() {
    }
    public Integer getGid() {
        return gid;
    }
    public void setGid(Integer gid) {
        this.gid = gid;
    public DlgagnpEntity() {
    }
    public Long getObjectid() {
@@ -106,13 +92,5 @@
    public void setBsm(String bsm) {
        this.bsm = bsm;
    }
    public String getGeom() {
        return geom;
    }
    public void setGeom(String geom) {
        this.geom = geom;
    }
}