package com.fzzy.push.sx2024.data;
|
|
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:25
|
*/
|
@Data
|
public class SX2024Api1506 implements Serializable {
|
|
@PropertyDef(label = "账套号")
|
private Double nAcctId;
|
|
@PropertyDef(label = "期间")
|
private String cYear;
|
|
@PropertyDef(label = "年度")
|
private String nNo;
|
|
@PropertyDef(label = "期初本位币余额")
|
private Double bM;
|
|
@PropertyDef(label = "期末本位币余额")
|
private Double eM;
|
|
@PropertyDef(label = "期初数量")
|
private Double bQty;
|
|
@PropertyDef(label = "期末数量")
|
private Double eQty;
|
/**
|
* 1:借方
|
* -1:贷方
|
*/
|
@PropertyDef(label = "余额方向")
|
private String cDc;
|
|
@PropertyDef(label = "借方本位币发生额")
|
private Double dM;
|
|
@PropertyDef(label = "贷方本位币发生额")
|
private Double cM;
|
|
@PropertyDef(label = "借方发生数量")
|
private Double dQ;
|
|
@PropertyDef(label = "贷方发生数量")
|
private Double cQ;
|
|
@PropertyDef(label = "期初外币余额")
|
private Double bFm;
|
|
@PropertyDef(label = "期末外币余额")
|
private Double eFm;
|
|
@PropertyDef(label = "借方外币发生额")
|
private Double dFm;
|
|
@PropertyDef(label = "贷方外币发生额")
|
private Double cFm;
|
|
@PropertyDef(label = "操作标志")
|
private String czbz;
|
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
@PropertyDef(label = "最后更新时间")
|
private Date zhgxsj;
|
}
|