| package com.fzzy.push.sx2024.data; | 
|   | 
| 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.math.BigDecimal; | 
| import java.util.Date; | 
|   | 
| /** | 
|  * @Description 资产折旧信息 | 
|  * @Author CZT | 
|  * @Date 2024/11/6 16:40 | 
|  */ | 
| @Data | 
| public class SX2024Api1510 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; | 
|   | 
| } |