From 5408346178dd12b7ab78fb51c76f59c300a7e153 Mon Sep 17 00:00:00 2001 From: ws <ws@123.com> Date: 星期四, 31 十月 2024 23:37:31 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- src/main/java/com/fzzy/api/entity/Api1505.java | 115 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 115 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/fzzy/api/entity/Api1505.java b/src/main/java/com/fzzy/api/entity/Api1505.java new file mode 100644 index 0000000..cad095d --- /dev/null +++ b/src/main/java/com/fzzy/api/entity/Api1505.java @@ -0,0 +1,115 @@ +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_1505") +@EqualsAndHashCode(callSuper = false) +public class Api1505 extends ApiParent implements Serializable { + /** + * + */ + private static final long serialVersionUID = 1L; + + /** + * 閫氳繃鎺ュ彛鑾峰彇鐨勫崟浣嶈处濂楀悗锛屽湪灞�绔嚜鍔ㄤ骇鐢熻处濂楀彿 + */ + @Id + @JSONField(serialize = false) + @PropertyDef(label = "璐﹀鍙�") + @Column(name = "nAcctId", length = 9) + private Double nAcctId; + + @JSONField(serialize = false) + @PropertyDef(label = "骞村害") + @Column(name = "cYear", length = 4) + private String cYear; + + @PropertyDef(label = "绉戠洰缂栫爜") + @Column(name = "cCode", length = 80) + private String cCode; + + @PropertyDef(label = "绉戠洰鍚嶇О") + @Column(name = "cName", length = 256) + private String cName; + + @PropertyDef(label = "绉戠洰鍏ㄧО") + @Column(name = "cAllName", length = 65536) + private String cAllName; + + /** + * 1:璧勪骇绫� + * 2:璐熷�虹被 + * 3:鍏卞悓绫� + * 4:鎵�鏈夎�呮潈鐩婄被 + * 5:鎴愭湰璐圭敤绫� + * 6:鎹熺泭绫� + */ + @PropertyDef(label = "绉戠洰绫诲埆") + @Column(name = "nClass", length = 9) + private String nClass; + /** + * (-1)-璐锋柟锛�1-鍊熸柟 + */ + @PropertyDef(label = "浣欓鏂瑰悜") + @Column(name = "cDc", length = 3) + private String cDc; + + @PropertyDef(label = "鏈骇绉戠洰") + @Column(name = "bL") + private String bL; + + @PropertyDef(label = "绉戠洰绾ф") + @Column(name = "nGrade", length = 8) + private Double nGrade; + + @PropertyDef(label = "鏁伴噺绉戠洰") + @Column(name = "bQ") + private String bQ; + + @PropertyDef(label = "鏁伴噺鍗曚綅") + @Column(name = "cQUnit") + private String cQUnit; + + @PropertyDef(label = "鐜伴噾绫荤鐩�") + @Column(name = "bCash") + private String bCash; + + @PropertyDef(label = "閾惰绫荤鐩�") + @Column(name = "bBank") + private String bBank; + + @PropertyDef(label = "鐜伴噾娴侀噺绫荤鐩�") + @Column(name = "bXjll") + private String bXjll; + + @PropertyDef(label = "鍐荤粨") + @Column(name = "bF") + private String bF; + + @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