| package com.fzzy.async.fzzy40.entity; | 
|   | 
| /** | 
|  * @Author: YYC | 
|  * @Description: | 
|  * @DateTime: 2024-12-19 14:23 | 
|  **/ | 
|   | 
| import com.alibaba.fastjson.annotation.JSONField; | 
| import com.bstek.dorado.annotation.PropertyDef; | 
| import lombok.Data; | 
|   | 
| 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") | 
| public class Fz40Api1510 implements Serializable { | 
|     /** | 
|      * | 
|      */ | 
|     private static final long serialVersionUID = 1L; | 
|   | 
|     /** | 
|      * 通过接口获取的单位账套后,在局端自动产生账套号 | 
|      */ | 
|     @Id | 
|     @Column(name = "ID_", precision = 18) | 
|     @JSONField(serialize = false) | 
|     private String id; | 
|   | 
|     @Column(name = "COMPANY_ID_", length = 10) | 
|     @PropertyDef(label = "组织编码") | 
|     private String companyId; | 
|   | 
|     @Column(name = "DEPT_ID_", length = 30) | 
|     @PropertyDef(label = "所属分库") | 
|     private String deptId; | 
|   | 
|     @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; | 
|   | 
|     @JSONField(format = "yyyy-MM-dd HH:mm:ss") | 
|     @PropertyDef(label = "最后更新时间") | 
|     @Column(name = "zhgxsj") | 
|     private Date zhgxsj; | 
|   | 
| } |