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:20
|
*/
|
@Data
|
public class Nx2023Api1505 implements Serializable {
|
|
@PropertyDef(label = "账套号")
|
private Double nAcctId;
|
|
@PropertyDef(label = "年度")
|
private String cYear;
|
|
@PropertyDef(label = "科目编码")
|
private String cCode;
|
|
@PropertyDef(label = "科目名称")
|
private String cName;
|
|
@PropertyDef(label = "科目全称")
|
private String cAllName;
|
|
/**
|
* 1:资产类
|
* 2:负债类
|
* 3:共同类
|
* 4:所有者权益类
|
* 5:成本费用类
|
* 6:损益类
|
*/
|
@PropertyDef(label = "科目类别")
|
private String nClass;
|
/**
|
* (-1)-贷方;1-借方
|
*/
|
@PropertyDef(label = "余额方向")
|
private String cDc;
|
|
@PropertyDef(label = "末级科目")
|
private String bL;
|
|
@PropertyDef(label = "科目级次")
|
private Double nGrade;
|
|
@PropertyDef(label = "数量科目")
|
private String bQ;
|
|
@PropertyDef(label = "数量单位")
|
private String cQUnit;
|
|
@PropertyDef(label = "现金类科目")
|
private String bCash;
|
|
@PropertyDef(label = "银行类科目")
|
private String bBank;
|
|
@PropertyDef(label = "现金流量类科目")
|
private String bXjll;
|
|
@PropertyDef(label = "冻结")
|
private String bF;
|
|
@PropertyDef(label = "操作标志")
|
private String czbz;
|
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
@PropertyDef(label = "最后更新时间")
|
private Date zhgxsj;
|
}
|