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/Fz61Api1507.java | 155 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 155 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/fzzy/async/fzzy61/entity/Fz61Api1507.java b/src/main/java/com/fzzy/async/fzzy61/entity/Fz61Api1507.java new file mode 100644 index 0000000..27b4c0e --- /dev/null +++ b/src/main/java/com/fzzy/async/fzzy61/entity/Fz61Api1507.java @@ -0,0 +1,155 @@ +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_1507") +public class Fz61Api1507 implements Serializable { + /** + * + */ + private static final long serialVersionUID = 1L; + + /** + * 閫氳繃鎺ュ彛鑾峰彇鐨勫崟浣嶈处濂楀悗锛屽湪灞�绔嚜鍔ㄤ骇鐢熻处濂楀彿 + */ + @Id + @Column(name = "ID_", length = 40) + @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 = "cvkind", length = 9) + private String cvkind; + + @PropertyDef(label = "鏈熼棿") + @Column(name = "cmon") + private Integer cmon; + + @PropertyDef(label = "骞村害") + @Column(name = "cyear") + private Integer cyear; + + @PropertyDef(label = "鍑瘉鍙�") + @Column(name = "nvno") + private Integer nvno; + + @PropertyDef(label = "鍒嗗綍搴忓彿") + @Column(name = "nno") + private Integer nno; + + @PropertyDef(label = "鍑瘉鍒嗙被") + @Column(name = "btmp") + private Integer btmp; + + @PropertyDef(label = "鎽樿") + @Column(name = "digest", length = 512) + private String digest; + + @PropertyDef(label = "绉戠洰缂栫爜") + @Column(name = "ccode", length = 80) + private String ccode; + + @JSONField(format = "yyyy-MM-dd") + @PropertyDef(label = "鍑瘉鏃ユ湡") + @Column(name = "ccsmalldatetime", length = 10) + private Date ccsmalldatetime; + + @PropertyDef(label = "鍒跺崟浜�") + @Column(name = "cmaker", length = 32) + private String cmaker; + /** + * 1:鍊熸柟 + * -1:璐锋柟 + */ + @PropertyDef(label = "鏂瑰悜") + @Column(name = "cdc") + private Integer 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") + private Integer bpt; + + @PropertyDef(label = "闄勪欢寮犳暟") + @Column(name = "nanum") + private Integer 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 = "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; + + @JSONField(format = "yyyy-MM-dd HH:mm:ss") + @PropertyDef(label = "鏈�鍚庢洿鏂版椂闂�") + @Column(name = "zhgxsj") + private Date zhgxsj; + +} + -- Gitblit v1.9.3