package com.fzzy.push.nx2023.dto;
|
|
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;
|
|
/**
|
* @Description 现金流量分配信息
|
* @Author CZT
|
* @Date 2024/11/6 16:35
|
*/
|
@Data
|
public class Nx2023Api1508 implements Serializable {
|
|
|
@PropertyDef(label = "id")
|
@JSONField(serialize = false)
|
private String id;
|
|
@PropertyDef(label = "账套号")
|
@JsonProperty("nAcctId")
|
private String nacctid;
|
|
@PropertyDef(label = "凭证类型")
|
@JsonProperty("cVKind")
|
private String cvkind;
|
|
@PropertyDef(label = "期间")
|
@JsonProperty("cMon")
|
private Integer cmon;
|
|
@PropertyDef(label = "年度")
|
@JsonProperty("cYear")
|
private Integer cyear;
|
|
@PropertyDef(label = "凭证号")
|
@JsonProperty("nVNo")
|
private Integer nvno;
|
|
@PropertyDef(label = "科目编码")
|
@JsonProperty("cCode")
|
private String ccode;
|
|
@PropertyDef(label = "对方科目编码")
|
@JsonProperty("cDFCode")
|
private String cdfcode;
|
|
@PropertyDef(label = "现金流量项目代码")
|
@JsonProperty("cCashCode")
|
private String ccashcode;
|
|
@PropertyDef(label = "分录序号")
|
@JsonProperty("nNo")
|
private Integer nrowno;
|
|
@PropertyDef(label = "金额")
|
@JsonProperty("nM")
|
private Double nm;
|
|
/**
|
* 1:流入
|
* -1:流出
|
*/
|
@PropertyDef(label = "方向")
|
@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;
|
}
|