czt
2024-11-27 416380997a1e0c473c85826c361ebe38d21169fb
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
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:40
 */
@Data
public class SH2023Api1510 implements Serializable {
 
    @PropertyDef(label = "id")
    @JSONField(serialize = false)
    private String id;
 
    @PropertyDef(label = "账套号")
    @JsonProperty("nAcctID")
    private String nacctid;
 
    @PropertyDef(label = "固定资产编码")
    @JsonProperty("FixAssetCode")
    private String fixassetcode;
 
    @PropertyDef(label = "期间")
    @JsonProperty("Period")
    private String period;
 
    @PropertyDef(label = "年度")
    @JsonProperty("AcctYear")
    private String acctyear;
 
    @PropertyDef(label = "期初原值")
    @JsonProperty("BValueOrg")
    private Double bvalueorg;
 
    @PropertyDef(label = "累计折旧")
    @JsonProperty("BAccumDepr")
    private Double baccumdepr;
 
    @PropertyDef(label = "本期计提折旧")
    @JsonProperty("DeprAmmount")
    private Double deprammount;
 
    @PropertyDef(label = "本年累计计提折旧")
    @JsonProperty("YAccumDepr")
    private Double yaccumdepr;
 
    @PropertyDef(label = "本期数量增加")
    @JsonProperty("QtyAdd")
    private Double qtyadd;
 
    @PropertyDef(label = "本期数量减少")
    @JsonProperty("QtyDecrease")
    private Double qtydecrease;
 
    @PropertyDef(label = "本期原值增加")
    @JsonProperty("ValueOrgAdd")
    private Double valueorgadd;
 
    @PropertyDef(label = "本期原值减少")
    @JsonProperty("ValueOrgDerease")
    private Double valueorgderease;
 
    @PropertyDef(label = "本期累计折旧调增")
    @JsonProperty("AccuDeprAdjustAdd")
    private Double accudepradjustadd;
 
    @PropertyDef(label = "本期累计折旧调减")
    @JsonProperty("AccuDeprAdjustDec")
    private Double accudepradjustdec;
 
    @PropertyDef(label = "本年累计数量增加")
    @JsonProperty("YQtyIncrease")
    private Double yqtyIncrease;
 
    @PropertyDef(label = "本年累计数量减少")
    @JsonProperty("YQtyDecrease")
    private Double yqtydecrease;
 
    @PropertyDef(label = "本年原值累计增加")
    @JsonProperty("YvalueIncrease")
    private Double yvalueincrease;
 
    @PropertyDef(label = "本年原值累计减少")
    @JsonProperty("YvalueDecrease")
    private Double yvaluedecrease;
 
    @PropertyDef(label = "本年累计折旧调增")
    @JsonProperty("YAccuDeprIncrease")
    private Double yaccudeprincrease;
 
    @PropertyDef(label = "本年累计折旧调减")
    @JsonProperty("YAccuDeprDecrease")
    private Double yaccudeprdecrease;
 
    @PropertyDef(label = "操作标志")
    @JsonProperty("czbz")
    private String czbz;
 
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @PropertyDef(label = "最后更新时间")
    @JsonProperty("zhgxsj")
    private Date zhgxsj;
 
}