YYC
2024-12-23 3697ca81ae651e6087706668744f5b67535f9f40
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
package com.fzzy.api.entity;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import javax.persistence.*;
import java.io.Serializable;
import java.util.Date;
 
/**
 * 科目信息
 *
 * @author czt
 */
@Data
@Entity
@Table(name = "API_1505")
@EqualsAndHashCode(callSuper = false)
public class Api1505 extends ApiParent implements Serializable {
    /**
     *
     */
    private static final long serialVersionUID = 1L;
 
    /**
     * 通过接口获取的单位账套后,在局端自动产生账套号
     */
    @Id
    @Column(name = "ID_", precision = 18)
    @JSONField(serialize = false)
    private String id;
 
    @PropertyDef(label = "账套号")
    @Column(name = "nacctid", length = 23)
    private String nacctid;
 
 
    @PropertyDef(label = "年度")
    @Column(name = "cyear")
    private Integer cyear;
 
    @PropertyDef(label = "科目编码")
    @Column(name = "ccode", length = 80)
    private String ccode;
 
    @PropertyDef(label = "科目名称")
    @Column(name = "cname", length = 256)
    private String cname;
 
    @PropertyDef(label = "科目全称")
    @Column(name = "callname", length = 65536)
    private String callname;
 
    /**
     * 1:资产类
     * 2:负债类
     * 3:共同类
     * 4:所有者权益类
     * 5:成本费用类
     * 6:损益类
     */
    @PropertyDef(label = "科目类别")
    @Column(name = "nclass", length = 9)
    private String nclass;
    /**
     * (-1)-贷方;1-借方
     */
    @PropertyDef(label = "余额方向")
    @Column(name = "cdc")
    private Integer cdc;
 
    @PropertyDef(label = "末级科目")
    @Column(name = "bl")
    private Integer bl;
 
    @PropertyDef(label = "科目级次")
    @Column(name = "ngrade")
    private Integer ngrade;
 
    @PropertyDef(label = "数量科目")
    @Column(name = "bq")
    private Integer bq;
 
    @PropertyDef(label = "数量单位")
    @Column(name = "cqunit")
    private Integer cqunit;
 
    @PropertyDef(label = "现金类科目")
    @Column(name = "bcash")
    private Integer bcash;
 
    @PropertyDef(label = "银行类科目")
    @Column(name = "bbank")
    private Integer bbank;
 
    @PropertyDef(label = "现金流量类科目")
    @Column(name = "bxjll")
    private Integer bxjll;
 
    @PropertyDef(label = "冻结")
    @Column(name = "bf")
    private Integer bf;
 
    @PropertyDef(label = "统一库区编码")
    @Column(name = "tykqbm", length = 22)
    private String tykqbm;
 
    @PropertyDef(label = "操作标志")
    @Column(name = "czbz", length = 1)
    private String czbz;
 
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @PropertyDef(label = "最后更新时间")
    @Column(name = "zhgxsj")
    private Date zhgxsj;
 
}