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