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/Api1507.java | 147 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 147 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/fzzy/api/entity/Api1507.java b/src/main/java/com/fzzy/api/entity/Api1507.java new file mode 100644 index 0000000..03b166e --- /dev/null +++ b/src/main/java/com/fzzy/api/entity/Api1507.java @@ -0,0 +1,147 @@ +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_1507") +@EqualsAndHashCode(callSuper = false) +public class Api1507 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 = "cVKind", length = 9) + private String cVKind; + + @PropertyDef(label = "鏈熼棿") + @Column(name = "cMon", length = 3) + private Double cMon; + + @PropertyDef(label = "骞村害") + @Column(name = "cYear", length = 4) + private Double cYear; + + @PropertyDef(label = "鍑瘉鍙�") + @Column(name = "nVNo", length = 9) + private Double nVNo; + + @PropertyDef(label = "鍒嗗綍搴忓彿") + @Column(name = "nNo", precision = 9) + private Double nNo; + + @PropertyDef(label = "鍑瘉鍒嗙被") + @Column(name = "bTmp", precision = 3) + private Double bTmp; + + @PropertyDef(label = "鎽樿") + @Column(name = "Digest", length = 256) + private String Digest; + + @PropertyDef(label = "绉戠洰缂栫爜") + @Column(name = "cCode", length = 80) + private Double cCode; + + @JSONField(format = "yyyy-MM-dd") + @PropertyDef(label = "鍑瘉鏃ユ湡") + @Column(name = "cVSmallDatetime", length = 10) + private String cVSmallDatetime; + + @PropertyDef(label = "鍒跺崟浜�") + @Column(name = "cMaker", length = 32) + private String cMaker; + /** + * 1:鍊熸柟 + * -1:璐锋柟 + */ + @PropertyDef(label = "鏂瑰悜") + @Column(name = "cDc", precision = 3) + private String cDc; + + @PropertyDef(label = "瀹℃牳浜�") + @Column(name = "cCkEr", length = 32) + private String cCkEr; + + @PropertyDef(label = "璁拌处浜�") + @Column(name = "cPtEr", length = 32) + private String cPtEr; + /** + * 0:鍚� + * 1:鏄� + */ + @PropertyDef(label = "璁拌处鏍囧織") + @Column(name = "bPt", precision = 3) + private Double bPt; + + @PropertyDef(label = "闄勪欢寮犳暟") + @Column(name = "nANum", precision = 9) + private Double nANum; + + @PropertyDef(label = "閲戦") + @Column(name = "nM", precision = 20, scale = 4) + private Double nM; + + @PropertyDef(label = "鏁伴噺") + @Column(name = "nQty", precision = 20, scale = 4) + private Double nQty; + + @PropertyDef(label = "鍗曚环") + @Column(name = "nPrice", precision = 20, scale = 4) + private Double nPrice; + + @PropertyDef(label = "缁撶畻鍙�") + @Column(name = "cSettleNo", length = 40) + private String cSettleNo; + + @PropertyDef(label = "鍑虹撼") + @Column(name = "cCashier", length = 32) + private String cCashier; + + @PropertyDef(label = "姹囩巼") + @Column(name = "rate", precision = 20, scale = 4) + private Double rate; + + @PropertyDef(label = "澶栧竵閲戦") + @Column(name = "nFm", precision = 20, scale = 4) + private Double nFm; + + @PropertyDef(label = "璁¢噺鍗曚綅",description = "璁¢噺鍗曚綅姹夊瓧") + @Column(name = "meterUnitId", length = 32) + private String meterUnitId; + + @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