package com.fzzy.api.entity;
|
|
import com.alibaba.fastjson.annotation.JSONField;
|
import com.bstek.dorado.annotation.PropertyDef;
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import javax.persistence.*;
|
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
|
@Column(name = "ID_", precision = 18)
|
@JSONField(serialize = false)
|
private String id;
|
|
@PropertyDef(label = "账套号")
|
@Column(name = "nacctid", length = 23)
|
private String nacctid;
|
|
@PropertyDef(label = "固定资产编码")
|
@Column(name = "fixassetcode", length = 20)
|
private String fixassetcode;
|
|
@PropertyDef(label = "期间")
|
@Column(name = "period")
|
private Integer period;
|
|
@PropertyDef(label = "年度")
|
@Column(name = "acctyear")
|
private Integer 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 = "tykqbm", length = 22)
|
private String tykqbm;
|
|
@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;
|
|
}
|