czt
2024-11-11 c5d51d30305bd402673745cea1abce9fd1c4b443
src/main/java/com/fzzy/push/nx2023/dto/Nx2023Api1508.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;
@@ -16,48 +17,64 @@
public class Nx2023Api1508 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 String cCode;
    @JsonProperty("cCode")
    private String ccode;
    @PropertyDef(label = "对方科目编码")
    private String cDFCode;
    @JsonProperty("cDFCode")
    private String cdfcode;
    @PropertyDef(label = "现金流量项目代码")
    private String cCashCode;
    @JsonProperty("cCashCode")
    private String ccashcode;
    @PropertyDef(label = "分录序号")
    private Double nNo;
    @JsonProperty("nNo")
    private Integer nrowno;
    @PropertyDef(label = "金额")
    private Double nM;
    @JsonProperty("nM")
    private Double nm;
    /**
     * 1:流入
     * -1:流出
     */
    @PropertyDef(label = "方向")
    private String cDc;
    @JsonProperty("cDc")
    private Integer cdc;
    @PropertyDef(label = "操作标志")
    @JsonProperty("czbz")
    private String czbz;
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @PropertyDef(label = "最后更新时间")
    @JsonProperty("zhgxsj")
    private Date zhgxsj;
}