管道基础大数据平台系统开发-【后端】-Server
13693261870
2025-07-02 ed8c7a5effd0d423ce1118b680ecdca6fe732609
src/main/java/com/lf/server/entity/bd/Dlg25whfcpEntity.java
对比新文件
@@ -0,0 +1,55 @@
package com.lf.server.entity.bd;
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;
/**
 * Dlg25whfcp
 * @author WWW
 */
@Data
@AllArgsConstructor
@TableName("bd.dlg_25w_hfcp")
@EqualsAndHashCode(callSuper = false)
public class Dlg25whfcpEntity extends BaseGeoEntity {
    private static final long serialVersionUID = 682929033265881728L;
    private String name;
    private String gb;
    private String maptile;
    public Dlg25whfcpEntity() {
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public String getGb() {
        return gb;
    }
    public void setGb(String gb) {
        this.gb = gb;
    }
    public String getMaptile() {
        return maptile;
    }
    public void setMaptile(String maptile) {
        this.maptile = maptile;
    }
}