czt
2024-11-07 6f9664ebeeca03126e6f710a7b84f3b7678cb3de
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
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:40
 */
@Data
public class SX2024Api1510 implements Serializable {
 
    @PropertyDef(label = "账套号")
    private Double nAcctId;
 
    @PropertyDef(label = "固定资产编码")
    private String fixAssetCode;
 
    @PropertyDef(label = "期间")
    private Double period;
 
    @PropertyDef(label = "年度")
    private Double AcctYear;
 
    @PropertyDef(label = "期初原值")
    private Double bValueOrg;
 
    @PropertyDef(label = "累计折旧")
    private Double bAccumDepr;
 
    @PropertyDef(label = "本期计提折旧")
    private Double deprAmmount;
 
    @PropertyDef(label = "本年累计计提折旧")
    private Double yAccumDepr;
 
    @PropertyDef(label = "本期数量增加")
    private Double qtyAdd;
 
    @PropertyDef(label = "本期数量减少")
    private Double qtyDecrease;
 
    @PropertyDef(label = "本期原值增加")
    private Double valueOrgAdd;
 
    @PropertyDef(label = "本期原值减少")
    private Double valueOrgDerease;
 
    @PropertyDef(label = "本期累计折旧调增")
    private Double accuDeprAdjustAdd;
 
    @PropertyDef(label = "本期累计折旧调减")
    private Double accuDeprAdjustDec;
 
    @PropertyDef(label = "本年累计数量增加")
    private Double yQtyIncrease;
 
    @PropertyDef(label = "本年累计数量减少")
    private Double yQtyDecrease;
 
    @PropertyDef(label = "本年原值累计增加")
    private Double yValueIncrease;
 
    @PropertyDef(label = "本年原值累计减少")
    private Double yValueDecrease;
 
    @PropertyDef(label = "本年累计折旧调增")
    private Double yAccuDeprIncrease;
 
    @PropertyDef(label = "本年累计折旧调减")
    private Double YAccuDeprDecrease;
 
    @PropertyDef(label = "操作标志")
    private String czbz;
 
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @PropertyDef(label = "最后更新时间")
    private Date zhgxsj;
}