czt
2024-11-25 eb28cab79dc230ed71771f3984bcab69a435e53b
src/main/java/com/fzzy/push/sx2024/data/SX2024Api1507.java
@@ -2,6 +2,7 @@
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
@@ -14,89 +15,111 @@
@Data
public class SX2024Api1507 implements Serializable {
    @PropertyDef(label = "id")
    @JSONField(serialize = false)
    private String id;
    @PropertyDef(label = "账套号")
    private Double nAcctId;
    @JsonProperty("nAcctId")
    private String nacctid;
    @PropertyDef(label = "凭证类型")
    private String cVKind;
    @JsonProperty("cVKind")
    private String cvkind;
    @PropertyDef(label = "期间")
    private Double cMon;
    @JsonProperty("cMon")
    private Integer cmon;
    @PropertyDef(label = "年度")
    private Double cYear;
    @JsonProperty("cYear")
    private Integer cyear;
    @PropertyDef(label = "凭证号")
    private Double nVNo;
    @JsonProperty("nVNo")
    private Integer nvno;
    @PropertyDef(label = "分录序号")
    private Double nNo;
    @PropertyDef(label = "凭证分类")
    private Double bTmp;
    @JsonProperty("nNo")
    private Integer nno;
    @PropertyDef(label = "摘要")
    private String Digest;
    @JsonProperty("Digest")
    private String digest;
    @PropertyDef(label = "科目编码")
    private Double cCode;
    @JsonProperty("cCode")
    private String ccode;
    @JSONField(format = "yyyy-MM-dd")
    @PropertyDef(label = "凭证日期")
    private String cVSmallDatetime;
    @JsonProperty("cVSmallDatetime")
    private Date ccsmalldatetime;
    @PropertyDef(label = "制单人")
    private String cMaker;
    @JsonProperty("cMaker")
    private String cmaker;
    /**
     * 1:借方
     * -1:贷方
     */
    @PropertyDef(label = "方向")
    private String cDc;
    @JsonProperty("cDc")
    private Integer cdc;
    @PropertyDef(label = "审核人")
    private String cCkEr;
    @JsonProperty("cCkEr")
    private String ccker;
    @PropertyDef(label = "记账人")
    private String cPtEr;
    @JsonProperty("cPtEr")
    private String cpter;
    /**
     * 0:否
     * 1:是
     */
    @PropertyDef(label = "记账标志")
    private Double bPt;
    @JsonProperty("bPt")
    private Integer bpt;
    @PropertyDef(label = "附件张数")
    private Double nANum;
    @JsonProperty("nANum")
    private Integer nanum;
    @PropertyDef(label = "金额")
    private Double nM;
    @JsonProperty("nM")
    private Double nm;
    @PropertyDef(label = "数量")
    private Double nQty;
    @JsonProperty("nQty")
    private Double nqty;
    @PropertyDef(label = "单价")
    private Double nPrice;
    @PropertyDef(label = "结算号")
    private String cSettleNo;
    @JsonProperty("nPrice")
    private Double nprice;
    @PropertyDef(label = "出纳")
    private String cCashier;
    @JsonProperty("cCashier")
    private String ccashier;
    @PropertyDef(label = "汇率")
    @JsonProperty("rate")
    private Double rate;
    @PropertyDef(label = "外币金额")
    private Double nFm;
    @JsonProperty("nFm")
    private Double nfm;
    @PropertyDef(label = "计量单位",description = "计量单位汉字")
    private String meterUnitId;
    @JsonProperty("meterUnitId")
    private String meterunitid;
    @PropertyDef(label = "操作标志")
    @JsonProperty("czbz")
    private String czbz;
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @PropertyDef(label = "最后更新时间")
    @JsonProperty("zhgxsj")
    private Date zhgxsj;
}