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/Fz61Api1504.java | 106 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 106 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/fzzy/async/fzzy61/entity/Fz61Api1504.java b/src/main/java/com/fzzy/async/fzzy61/entity/Fz61Api1504.java new file mode 100644 index 0000000..357e29f --- /dev/null +++ b/src/main/java/com/fzzy/async/fzzy61/entity/Fz61Api1504.java @@ -0,0 +1,106 @@ +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_1504") +public class Fz61Api1504 implements Serializable { + /** + * + */ + private static final long serialVersionUID = 1L; + + /** + * 閫氳繃鎺ュ彛鑾峰彇鐨勫崟浣嶈处濂楀悗锛屽湪灞�绔嚜鍔ㄤ骇鐢熻处濂楀彿 + */ + @Id + @PropertyDef(label = "璐﹀鍙�") + @Column(name = "nacctid", precision = 23) + private String nacctid; + + @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 = "cncctname", length = 256) + private String cncctname; + + @PropertyDef(label = "鏈綅甯�") + @Column(name = "ccurrency", length = 3) + private String ccurrency; + + @PropertyDef(label = "浼氳涓荤") + @Column(name = "cacctchief", length = 20) + private String cacctchief; + + @JSONField(format = "yyyyMM") + @PropertyDef(label = "鍚敤鏈熼棿", description = "yyyyMM") + @Column(name = "cperiodstart", length = 10) + private Date cperiodstart; + + @JSONField(format = "yyyy-MM-dd") + @PropertyDef(label = "鍚敤鏃ユ湡") + @Column(name = "cyearbmd", length = 10) + private Date cyearbmd; + + @PropertyDef(label = "鏈熼棿鏁�", description = "榛樿12") + @Column(name = "nacctperiodnum") + private Integer nacctperiodnum; + + @PropertyDef(label = "浼氳鍒跺害浠g爜", description = "11:浼佷笟浼氳鍑嗗垯鍒跺害(绮2013鐗�)(榛樿浠g爜鍊�)") + @Column(name = "caccclasscode", length = 2) + private String caccclasscode; + + @PropertyDef(label = "绉戠洰绾ф", description = "4-8:榛樿鏈�灏忓�间负4") + @Column(name = "naccgrade") + private Integer 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 = "nendday") + private Integer nendday; + + @JSONField(format = "yyyy-MM-dd HH:mm:ss") + @PropertyDef(label = "鏈�鍚庢洿鏂版椂闂�") + @Column(name = "zhgxsj") + private Date zhgxsj; + +} + -- Gitblit v1.9.3