From 029de836702607a95ccb0a69a74efcea52ddc451 Mon Sep 17 00:00:00 2001 From: czt <czt18638530771@163.com> Date: 星期四, 25 九月 2025 19:35:38 +0800 Subject: [PATCH] 上海对农数据接口调整2 --- src/main/java/com/fzzy/async/fzzy61/entity/Fz61Api1510.java | 136 +++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 136 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/fzzy/async/fzzy61/entity/Fz61Api1510.java b/src/main/java/com/fzzy/async/fzzy61/entity/Fz61Api1510.java new file mode 100644 index 0000000..2c1f919 --- /dev/null +++ b/src/main/java/com/fzzy/async/fzzy61/entity/Fz61Api1510.java @@ -0,0 +1,136 @@ +package com.fzzy.async.fzzy61.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 Fz61Api1510 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; + +} + -- Gitblit v1.9.3