|  |  |  | 
|---|
|  |  |  | package com.fzzy.push.gd2022.dto; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.bstek.dorado.annotation.PropertyDef; | 
|---|
|  |  |  | import com.fasterxml.jackson.annotation.JsonProperty; | 
|---|
|  |  |  | import lombok.Data; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import java.io.Serializable; | 
|---|
|  |  |  | 
|---|
|  |  |  | @PropertyDef(label = "单位代码") | 
|---|
|  |  |  | private String dwdm; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @PropertyDef(label = "统一单位编码") | 
|---|
|  |  |  | private String tydwbm; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @PropertyDef(label = "库区代码") | 
|---|
|  |  |  | private String kqdm; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @PropertyDef(label = "统一库区编码") | 
|---|
|  |  |  | private String tykqbm; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @PropertyDef(label = " 报表期号") | 
|---|
|  |  |  | private String bbsj; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | private String bbm; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @PropertyDef(label = " 指标序号") | 
|---|
|  |  |  | private String zbxh; | 
|---|
|  |  |  | @JsonProperty("Zbxh") | 
|---|
|  |  |  | private Integer Zbxh; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @PropertyDef(label = " 指标名称") | 
|---|
|  |  |  | private String zbmc; | 
|---|
|  |  |  | 
|---|
|  |  |  | @PropertyDef(label = "   最后更新时间") | 
|---|
|  |  |  | private String zhgxsj; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @JsonProperty("Zbxh") | 
|---|
|  |  |  | public void setZbxh(Integer zbxh) { | 
|---|
|  |  |  | Zbxh = zbxh; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @JsonProperty("Zbxh") | 
|---|
|  |  |  | public Integer getZbxh() { | 
|---|
|  |  |  | return Zbxh; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public GDFinanceDto() { | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public GDFinanceDto(String zbxh, String zbmc, String zbz1, String zbz2) { | 
|---|
|  |  |  | this.zbxh = zbxh; | 
|---|
|  |  |  | public GDFinanceDto(Integer zbxh, String zbmc, String zbz1, String zbz2) { | 
|---|
|  |  |  | this.Zbxh = zbxh; | 
|---|
|  |  |  | this.zbmc = zbmc; | 
|---|
|  |  |  | this.zbz1 = zbz1; | 
|---|
|  |  |  | this.zbz2 = zbz2; | 
|---|