From bfa4c9b7258cc25ed9d6e5511fede769b4ef5ea9 Mon Sep 17 00:00:00 2001
From: YYC <1833023622@qq.com>
Date: 星期一, 28 十月 2024 23:38:34 +0800
Subject: [PATCH] 提交代码
---
src/main/java/com/fzzy/api/entity/Api1510.java | 124 +++++++++++++++++++++++++++++++++++++++++
1 files changed, 124 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/fzzy/api/entity/Api1510.java b/src/main/java/com/fzzy/api/entity/Api1510.java
new file mode 100644
index 0000000..0e4f3ee
--- /dev/null
+++ b/src/main/java/com/fzzy/api/entity/Api1510.java
@@ -0,0 +1,124 @@
+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;
+
+}
--
Gitblit v1.9.3