管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2023-02-20 14a369399bed54031dc130acc9382bf7548009f7
src/main/java/com/lf/server/entity/bs/Dlg5wveglEntity.java
对比新文件
@@ -0,0 +1,55 @@
package com.lf.server.entity.bs;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.lf.server.entity.all.BaseGeoEntity;
import lombok.*;
import java.math.BigDecimal;
import java.sql.Timestamp;
import java.time.LocalDate;
/**
 * Dlg5wvegl
 * @author WWW
 */
@Data
@AllArgsConstructor
@TableName("bs.dlg_5w_vegl")
@EqualsAndHashCode(callSuper = false)
public class Dlg5wveglEntity extends BaseGeoEntity {
    private static final long serialVersionUID = 578701644474035968L;
    private String maptile;
    private String gb;
    private String type;
    public Dlg5wveglEntity() {
    }
    public String getMaptile() {
        return maptile;
    }
    public void setMaptile(String maptile) {
        this.maptile = maptile;
    }
    public String getGb() {
        return gb;
    }
    public void setGb(String gb) {
        this.gb = gb;
    }
    public String getType() {
        return type;
    }
    public void setType(String type) {
        this.type = type;
    }
}