YYC
2024-10-28 bfa4c9b7258cc25ed9d6e5511fede769b4ef5ea9
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
121
122
123
124
package com.fzzy.api.entity;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import java.io.Serializable;
import java.util.Date;
 
/**
 * 资产折旧信息
 *
 * @author czt
 */
@Data
@Entity
@Table(name = "API_1510")
@EqualsAndHashCode(callSuper = false)
public class Api1510 extends ApiParent implements Serializable {
    /**
     *
     */
    private static final long serialVersionUID = 1L;
 
    /**
     * 通过接口获取的单位账套后,在局端自动产生账套号
     */
    @Id
    @JSONField(serialize = false)
    @PropertyDef(label = "账套号")
    @Column(name = "nAcctId", length = 9)
    private Double nAcctId;
 
    @PropertyDef(label = "固定资产编码")
    @Column(name = "fixAssetCode", length = 20)
    private String fixAssetCode;
 
    @PropertyDef(label = "期间")
    @Column(name = "period", precision = 4)
    private Double period;
 
    @PropertyDef(label = "年度")
    @Column(name = "AcctYear", precision = 4)
    private Double AcctYear;
 
    @PropertyDef(label = "期初原值")
    @Column(name = "bValueOrg", precision = 20, scale = 4)
    private Double bValueOrg;
 
    @PropertyDef(label = "累计折旧")
    @Column(name = "bAccumDepr", precision = 20, scale = 4)
    private Double bAccumDepr;
 
    @PropertyDef(label = "本期计提折旧")
    @Column(name = "deprAmmount", precision = 20, scale = 4)
    private Double deprAmmount;
 
    @PropertyDef(label = "本年累计计提折旧")
    @Column(name = "yAccumDepr", precision = 20, scale = 4)
    private Double yAccumDepr;
 
    @PropertyDef(label = "本期数量增加")
    @Column(name = "qtyAdd", precision = 20, scale = 4)
    private Double qtyAdd;
 
    @PropertyDef(label = "本期数量减少")
    @Column(name = "qtyDecrease", precision = 20, scale = 4)
    private Double qtyDecrease;
 
    @PropertyDef(label = "本期原值增加")
    @Column(name = "valueOrgAdd", precision = 20, scale = 4)
    private Double valueOrgAdd;
 
    @PropertyDef(label = "本期原值减少")
    @Column(name = "valueOrgDerease", precision = 20, scale = 4)
    private Double valueOrgDerease;
 
    @PropertyDef(label = "本期累计折旧调增")
    @Column(name = "accuDeprAdjustAdd", precision = 20, scale = 4)
    private Double accuDeprAdjustAdd;
 
    @PropertyDef(label = "本期累计折旧调减")
    @Column(name = "accuDeprAdjustDec", precision = 20, scale = 4)
    private Double accuDeprAdjustDec;
 
    @PropertyDef(label = "本年累计数量增加")
    @Column(name = "yQtyIncrease", precision = 20, scale = 4)
    private Double yQtyIncrease;
 
    @PropertyDef(label = "本年累计数量减少")
    @Column(name = "yQtyDecrease", precision = 20, scale = 4)
    private Double yQtyDecrease;
 
    @PropertyDef(label = "本年原值累计增加")
    @Column(name = "yValueIncrease", precision = 20, scale = 4)
    private Double yValueIncrease;
 
    @PropertyDef(label = "本年原值累计减少")
    @Column(name = "yValueDecrease", precision = 20, scale = 4)
    private Double yValueDecrease;
 
    @PropertyDef(label = "本年累计折旧调增")
    @Column(name = "yAccuDeprIncrease", precision = 20, scale = 4)
    private Double yAccuDeprIncrease;
 
    @PropertyDef(label = "本年累计折旧调减")
    @Column(name = "YAccuDeprDecrease", precision = 20, scale = 4)
    private Double YAccuDeprDecrease;
 
    @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;
 
}