YYC
2025-08-27 dccec595343177f7bbcf0a9b977c5dca4a0d08fc
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
package com.fzzy.push.nx2023.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 Nx2023Api1510 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 Integer period;
 
    @PropertyDef(label = "年度")
    @JsonProperty("AcctYear")
    private Integer 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;
}