package com.fzzy.api.entity;
|
|
import com.alibaba.fastjson.annotation.JSONField;
|
import com.bstek.dorado.annotation.PropertyDef;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import javax.persistence.Column;
|
import javax.persistence.Entity;
|
import javax.persistence.Id;
|
import javax.persistence.Table;
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 资产折旧信息
|
*
|
* @author czt
|
*/
|
@Data
|
@Entity
|
@Table(name = "API_1510")
|
@EqualsAndHashCode(callSuper = false)
|
public class Api1510 extends ApiParent implements Serializable {
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 通过接口获取的单位账套后,在局端自动产生账套号
|
*/
|
@Id
|
@JSONField(serialize = false)
|
@PropertyDef(label = "账套号")
|
@Column(name = "nAcctId", length = 9)
|
private Double nAcctId;
|
|
@PropertyDef(label = "固定资产编码")
|
@Column(name = "fixAssetCode", length = 20)
|
private String fixAssetCode;
|
|
@PropertyDef(label = "期间")
|
@Column(name = "period", precision = 4)
|
private Double period;
|
|
@PropertyDef(label = "年度")
|
@Column(name = "AcctYear", precision = 4)
|
private Double AcctYear;
|
|
@PropertyDef(label = "期初原值")
|
@Column(name = "bValueOrg", precision = 20, scale = 4)
|
private Double bValueOrg;
|
|
@PropertyDef(label = "累计折旧")
|
@Column(name = "bAccumDepr", precision = 20, scale = 4)
|
private Double bAccumDepr;
|
|
@PropertyDef(label = "本期计提折旧")
|
@Column(name = "deprAmmount", precision = 20, scale = 4)
|
private Double deprAmmount;
|
|
@PropertyDef(label = "本年累计计提折旧")
|
@Column(name = "yAccumDepr", precision = 20, scale = 4)
|
private Double yAccumDepr;
|
|
@PropertyDef(label = "本期数量增加")
|
@Column(name = "qtyAdd", precision = 20, scale = 4)
|
private Double qtyAdd;
|
|
@PropertyDef(label = "本期数量减少")
|
@Column(name = "qtyDecrease", precision = 20, scale = 4)
|
private Double qtyDecrease;
|
|
@PropertyDef(label = "本期原值增加")
|
@Column(name = "valueOrgAdd", precision = 20, scale = 4)
|
private Double valueOrgAdd;
|
|
@PropertyDef(label = "本期原值减少")
|
@Column(name = "valueOrgDerease", precision = 20, scale = 4)
|
private Double valueOrgDerease;
|
|
@PropertyDef(label = "本期累计折旧调增")
|
@Column(name = "accuDeprAdjustAdd", precision = 20, scale = 4)
|
private Double accuDeprAdjustAdd;
|
|
@PropertyDef(label = "本期累计折旧调减")
|
@Column(name = "accuDeprAdjustDec", precision = 20, scale = 4)
|
private Double accuDeprAdjustDec;
|
|
@PropertyDef(label = "本年累计数量增加")
|
@Column(name = "yQtyIncrease", precision = 20, scale = 4)
|
private Double yQtyIncrease;
|
|
@PropertyDef(label = "本年累计数量减少")
|
@Column(name = "yQtyDecrease", precision = 20, scale = 4)
|
private Double yQtyDecrease;
|
|
@PropertyDef(label = "本年原值累计增加")
|
@Column(name = "yValueIncrease", precision = 20, scale = 4)
|
private Double yValueIncrease;
|
|
@PropertyDef(label = "本年原值累计减少")
|
@Column(name = "yValueDecrease", precision = 20, scale = 4)
|
private Double yValueDecrease;
|
|
@PropertyDef(label = "本年累计折旧调增")
|
@Column(name = "yAccuDeprIncrease", precision = 20, scale = 4)
|
private Double yAccuDeprIncrease;
|
|
@PropertyDef(label = "本年累计折旧调减")
|
@Column(name = "YAccuDeprDecrease", precision = 20, scale = 4)
|
private Double YAccuDeprDecrease;
|
|
@PropertyDef(label = "操作标志")
|
@Column(name = "czbz", length = 1)
|
private String czbz;
|
|
@JSONField(format = "yyyy-MM-dd HH:mm:ss")
|
@PropertyDef(label = "最后更新时间")
|
@Column(name = "zhgxsj")
|
private Date zhgxsj;
|
|
}
|