package com.fzzy.push.nx2023.dto; import com.alibaba.fastjson.annotation.JSONField; import com.bstek.dorado.annotation.PropertyDef; 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 = "账套号") private Double nAcctId; @PropertyDef(label = "凭证类型") private String cVKind; @PropertyDef(label = "期间") private Double cMon; @PropertyDef(label = "年度") private Double cYear; @PropertyDef(label = "凭证号") private Double nVNo; @PropertyDef(label = "科目编码") private String cCode; @PropertyDef(label = "对方科目编码") private String cDFCode; @PropertyDef(label = "现金流量项目代码") private String cCashCode; @PropertyDef(label = "分录序号") private Double nNo; @PropertyDef(label = "金额") private Double nM; /** * 1:流入 * -1:流出 */ @PropertyDef(label = "方向") private String cDc; @PropertyDef(label = "操作标志") private String czbz; @JSONField(format = "yyyy-MM-dd HH:mm:ss") @PropertyDef(label = "最后更新时间") private Date zhgxsj; }