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; }