管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-11-26 a532bbe01ac6e198c61db967eb4aa85ab92f71df
src/main/java/com/lf/server/entity/bd/Brg20wd01jEntity.java
对比新文件
@@ -0,0 +1,54 @@
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;
/**
 * Brg20wd01j
 * @author WWW
 */
@Data
@AllArgsConstructor
@TableName("bd.b_rg20w_d01j")
@EqualsAndHashCode(callSuper = false)
public class Brg20wd01jEntity extends BaseGeoEntity {
    private static final long serialVersionUID = 825481319718752768L;
    private String chfcac;
    private String gzbd;
    private String m2sLegend;
    public Brg20wd01jEntity() {
    }
    public String getChfcac() {
        return chfcac;
    }
    public void setChfcac(String chfcac) {
        this.chfcac = chfcac;
    }
    public String getGzbd() {
        return gzbd;
    }
    public void setGzbd(String gzbd) {
        this.gzbd = gzbd;
    }
    public String getM2sLegend() {
        return m2sLegend;
    }
    public void setM2sLegend(String m2sLegend) {
        this.m2sLegend = m2sLegend;
    }
}