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/Api1504.java |  102 +++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 102 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/fzzy/api/entity/Api1504.java b/src/main/java/com/fzzy/api/entity/Api1504.java
new file mode 100644
index 0000000..b1311e0
--- /dev/null
+++ b/src/main/java/com/fzzy/api/entity/Api1504.java
@@ -0,0 +1,102 @@
+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_1504")
+@EqualsAndHashCode(callSuper = false)
+public class Api1504 extends ApiParent implements Serializable {
+    /**
+     *
+     */
+    private static final long serialVersionUID = 1L;
+
+    /**
+     * 閫氳繃鎺ュ彛鑾峰彇鐨勫崟浣嶈处濂楀悗锛屽湪灞�绔嚜鍔ㄤ骇鐢熻处濂楀彿
+     */
+    @Id
+    @JSONField(serialize = false)
+    @PropertyDef(label = "璐﹀鍙�")
+    @Column(name = "nAcctId", precision = 9)
+    private Double nAcctId;
+
+    @PropertyDef(label = "璐﹀鍚嶇О")
+    @Column(name = "cAcctName", length = 256)
+    private String cAcctName;
+
+    @PropertyDef(label = "鏈綅甯�")
+    @Column(name = "cCurrency", length = 3)
+    private String cCurrency;
+
+    @PropertyDef(label = "浼氳涓荤")
+    @Column(name = "cAcctChief", length = 20)
+    private String cAcctChief;
+
+    @JSONField(format = "yyyy-MM-dd")
+    @PropertyDef(label = "鍚敤鏈熼棿")
+    @Column(name = "cPeriodStart", length = 10)
+    private String cPeriodStart;
+
+    @JSONField(format = "yyyy-MM-dd")
+    @PropertyDef(label = "鍚敤鏃ユ湡")
+    @Column(name = "cYearBmd", length = 10)
+    private String cYearBmd;
+
+    @PropertyDef(label = "鏈熼棿鏁�")
+    @Column(name = "nAcctPeriodNum")
+    private Double nAcctPeriodNum;
+
+    @PropertyDef(label = "浼氳鍒跺害浠g爜", description = "11:浼佷笟浼氳鍑嗗垯鍒跺害(绮2013鐗�)(榛樿浠g爜鍊�)")
+    @Column(name = "cAccClassCode", length = 8)
+    private String cAccClassCode;
+
+    @PropertyDef(label = "绉戠洰绾ф", description = "4-8:榛樿鏈�灏忓�间负4")
+    @Column(name = "nAccGrade")
+    private Double nAccGrade;
+
+    @PropertyDef(label = "绉戠洰缂栫爜瑙勫垯", description = "4222XXXX:榛樿鍓嶅洓绾х骇闀胯鍒欎负4222")
+    @Column(name = "cAccCodeStr", length = 40)
+    private String cAccCodeStr;
+
+    @PropertyDef(label = "鍗曚綅鍚嶇О")
+    @Column(name = "cCropName", length = 256)
+    private String cCropName;
+
+    @PropertyDef(label = "鍗曚綅浠g爜")
+    @Column(name = "cOrgCode", length = 18)
+    private String cOrgCode;
+
+    @PropertyDef(label = "缁熶竴鍗曚綅缂栫爜")
+    @Column(name = "xqydm", length = 20)
+    private String xqydm;
+
+    @PropertyDef(label = "缁熶竴搴撳尯缂栫爜")
+    @Column(name = "xkqdm",length = 22)
+    private String xkqdm;
+
+    @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