管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2023-02-20 14a369399bed54031dc130acc9382bf7548009f7
src/main/java/com/lf/server/entity/bs/Dlg1whydaEntity.java
对比新文件
@@ -0,0 +1,125 @@
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;
/**
 * Dlg1whyda
 * @author WWW
 */
@Data
@AllArgsConstructor
@TableName("bs.dlg_1w_hyda")
@EqualsAndHashCode(callSuper = false)
public class Dlg1whydaEntity extends BaseGeoEntity {
    private static final long serialVersionUID = 773886384337156224L;
    private String maptile;
    private String gb;
    private String hydc;
    private String vol;
    private String wql;
    private String period;
    private String type;
    private String name;
    private String classes;
    private String pinyin;
    public Dlg1whydaEntity() {
    }
    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 getHydc() {
        return hydc;
    }
    public void setHydc(String hydc) {
        this.hydc = hydc;
    }
    public String getVol() {
        return vol;
    }
    public void setVol(String vol) {
        this.vol = vol;
    }
    public String getWql() {
        return wql;
    }
    public void setWql(String wql) {
        this.wql = wql;
    }
    public String getPeriod() {
        return period;
    }
    public void setPeriod(String period) {
        this.period = period;
    }
    public String getType() {
        return type;
    }
    public void setType(String type) {
        this.type = type;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public String getClasses() {
        return classes;
    }
    public void setClasses(String classes) {
        this.classes = classes;
    }
    public String getPinyin() {
        return pinyin;
    }
    public void setPinyin(String pinyin) {
        this.pinyin = pinyin;
    }
}