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;
|
|
/**
|
* Bhy20wd23
|
* @author WWW
|
*/
|
@Data
|
@AllArgsConstructor
|
@TableName("bd.b_hy20w_d23")
|
@EqualsAndHashCode(callSuper = false)
|
public class Bhy20wd23Entity extends BaseGeoEntity {
|
private static final long serialVersionUID = 730143165090187904L;
|
|
private String chfcac;
|
|
private String gzbd;
|
|
private String dzmsg;
|
|
private String ann;
|
|
public Bhy20wd23Entity() {
|
}
|
|
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 getDzmsg() {
|
return dzmsg;
|
}
|
|
public void setDzmsg(String dzmsg) {
|
this.dzmsg = dzmsg;
|
}
|
|
public String getAnn() {
|
return ann;
|
}
|
|
public void setAnn(String ann) {
|
this.ann = ann;
|
}
|
}
|