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;
|
|
/**
|
* Brg20wd07b
|
* @author WWW
|
*/
|
@Data
|
@AllArgsConstructor
|
@TableName("bd.b_rg20w_d07b")
|
@EqualsAndHashCode(callSuper = false)
|
public class Brg20wd07bEntity extends BaseGeoEntity {
|
private static final long serialVersionUID = 12533111037934716L;
|
|
private String chfcac;
|
|
private String ysva;
|
|
private String yswa;
|
|
private String yswe;
|
|
private String ysx;
|
|
private String kwbed;
|
|
private String ysvc;
|
|
private String ysvd;
|
|
private String m2sLegend;
|
|
public Brg20wd07bEntity() {
|
}
|
|
public String getChfcac() {
|
return chfcac;
|
}
|
|
public void setChfcac(String chfcac) {
|
this.chfcac = chfcac;
|
}
|
|
public String getYsva() {
|
return ysva;
|
}
|
|
public void setYsva(String ysva) {
|
this.ysva = ysva;
|
}
|
|
public String getYswa() {
|
return yswa;
|
}
|
|
public void setYswa(String yswa) {
|
this.yswa = yswa;
|
}
|
|
public String getYswe() {
|
return yswe;
|
}
|
|
public void setYswe(String yswe) {
|
this.yswe = yswe;
|
}
|
|
public String getYsx() {
|
return ysx;
|
}
|
|
public void setYsx(String ysx) {
|
this.ysx = ysx;
|
}
|
|
public String getKwbed() {
|
return kwbed;
|
}
|
|
public void setKwbed(String kwbed) {
|
this.kwbed = kwbed;
|
}
|
|
public String getYsvc() {
|
return ysvc;
|
}
|
|
public void setYsvc(String ysvc) {
|
this.ysvc = ysvc;
|
}
|
|
public String getYsvd() {
|
return ysvd;
|
}
|
|
public void setYsvd(String ysvd) {
|
this.ysvd = ysvd;
|
}
|
|
public String getM2sLegend() {
|
return m2sLegend;
|
}
|
|
public void setM2sLegend(String m2sLegend) {
|
this.m2sLegend = m2sLegend;
|
}
|
}
|