package com.fzzy.push.sh2023.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:20
|
*/
|
@Data
|
public class SH2023Api1505 implements Serializable {
|
|
@PropertyDef(label = "id主键")
|
@JSONField(serialize = false)
|
private String id;
|
|
@PropertyDef(label = "账套号")
|
@JsonProperty("nAcctID")
|
private String nacctid;
|
|
@PropertyDef(label = "年度")
|
@JsonProperty("cYear")
|
private String cyear;
|
|
@PropertyDef(label = "科目编码")
|
@JsonProperty("cCode")
|
private String ccode;
|
|
@PropertyDef(label = "科目名称")
|
@JsonProperty("cName")
|
private String cname;
|
|
@PropertyDef(label = "科目全称")
|
@JsonProperty("cAllName")
|
private String callname;
|
|
/**
|
* 1:资产类
|
* 2:负债类
|
* 3:共同类
|
* 4:所有者权益类
|
* 5:成本费用类
|
* 6:损益类
|
*/
|
@PropertyDef(label = "科目类别")
|
@JsonProperty("nClass")
|
private String nclass;
|
/**
|
* (-1)-贷方;1-借方
|
*/
|
@PropertyDef(label = "余额方向")
|
@JsonProperty("cDc")
|
private String cdc;
|
|
@PropertyDef(label = "末级科目")
|
@JsonProperty("bL")
|
private String bl;
|
|
@PropertyDef(label = "科目级次")
|
@JsonProperty("nGrade")
|
private String ngrade;
|
|
@PropertyDef(label = "数量科目")
|
@JsonProperty("bQ")
|
private String bq;
|
|
@PropertyDef(label = "数量单位")
|
@JsonProperty("cQUnit")
|
private String cqunit;
|
|
@PropertyDef(label = "现金类科目")
|
@JsonProperty("bCash")
|
private String bcash;
|
|
@PropertyDef(label = "银行类科目")
|
@JsonProperty("bBank")
|
private String bbank;
|
|
@PropertyDef(label = "现金流量类科目")
|
@JsonProperty("bXjll")
|
private String bxjll;
|
|
@PropertyDef(label = "冻结")
|
@JsonProperty("bF")
|
private String bf;
|
|
@PropertyDef(label = "操作标志")
|
@JsonProperty("czbz")
|
private String czbz;
|
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
@PropertyDef(label = "最后更新时间")
|
@JsonProperty("zhgxsj")
|
private Date zhgxsj;
|
}
|