ws
2023-09-20 6ad5ee724102a7cc115a4024c00e23b40b87072c
src/main/java/com/fzzy/push/sh2023/dto/SHFinanceDto.java
@@ -1,11 +1,8 @@
package com.fzzy.push.sh2023.dto;
import com.bstek.dorado.annotation.PropertyDef;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import java.io.Serializable;
@Data
public class SHFinanceDto implements Serializable {
@@ -13,46 +10,31 @@
    @PropertyDef(label = "单位代码")
    private String dwdm;
    @PropertyDef(label = " 报表期号")
    @PropertyDef(label = "报表期号")
    private String bbsj;
    @PropertyDef(label = "报表名")
    private String bbm;
    @PropertyDef(label = " 指标序号")
    @JsonProperty("Zbxh")
    private Integer Zbxh;
    @PropertyDef(label = " 指标名称")
    @PropertyDef(label = "指标名称")
    private String zbmc;
    @PropertyDef(label = " 指标值 1")
    @PropertyDef(label = "指标值 1")
    private String zbz1;
    @PropertyDef(label = " 指标值 2")
    @PropertyDef(label = "指标值 2")
    private String zbz2;
    @PropertyDef(label = "  操作标志")
    @PropertyDef(label = "操作标志")
    private String czbz;
    @PropertyDef(label = "   最后更新时间")
    @PropertyDef(label = "最后更新时间")
    private String zhgxsj;
    @JsonProperty("Zbxh")
    public void setZbxh(Integer zbxh) {
        Zbxh = zbxh;
    }
    @JsonProperty("Zbxh")
    public Integer getZbxh() {
        return Zbxh;
    }
    public SHFinanceDto() {
    }
    public SHFinanceDto(Integer zbxh, String zbmc, String zbz1, String zbz2) {
        this.Zbxh = zbxh;
    public SHFinanceDto(String zbmc, String zbz1, String zbz2){
        this.zbmc = zbmc;
        this.zbz1 = zbz1;
        this.zbz2 = zbz2;