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/Fz61InoutPlan.java | 107 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 107 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/fzzy/async/fzzy61/entity/Fz61InoutPlan.java b/src/main/java/com/fzzy/async/fzzy61/entity/Fz61InoutPlan.java new file mode 100644 index 0000000..dcdcabe --- /dev/null +++ b/src/main/java/com/fzzy/async/fzzy61/entity/Fz61InoutPlan.java @@ -0,0 +1,107 @@ +package com.fzzy.async.fzzy61.entity; + +import com.bstek.dorado.annotation.PropertyDef; +import lombok.Data; + +import javax.persistence.*; +import java.io.Serializable; +import java.util.Date; +import java.util.List; + +/** + * 璁″垝绠$悊-涓昏〃 + * <p> + * 鍖呮嫭锛氭敹璐鍒掞紝閿�鍞鍒掞紝杞崲璁板綍锛岃鍒掓墽琛� + * + * @author: andy.jia + * @description: 鐗堟湰4.0瀛楁宸插 + * @version: + * @data:2020骞�5鏈�27鏃� + */ +@Data +@Entity +@Table(name = "D_INOUT_PLAN") +public class Fz61InoutPlan implements Serializable { + + public static String SORT_PROP = "year"; + + @Id + @Column(name = "ID_", length = 40) + @PropertyDef(label = "璁″垝缂栫爜") + private String id; + + @Column(name = "COMPANY_ID_", length = 10) + @PropertyDef(label = "缁勭粐缂栫爜") + private String companyId; + + @Column(name = "DEPT_ID_", length = 40) + @PropertyDef(label = "鎵�灞炲簱鍖�") + private String deptId; + + @Column(name = "TYPE_", length = 10) + @PropertyDef(label = "璁″垝绫诲瀷") + private String type; + + @Column(name = "NAME_", length = 50) + @PropertyDef(label = "璁″垝鍚嶇О") + private String name; + + @Column(name = "REFERENCE_NUMBER_", length = 40) + @PropertyDef(label = "璁″垝鏂囧彿") + private String referenceNumber; + + @Column(name = "YEAR_", length = 10) + @PropertyDef(label = "骞翠唤") + private String year; + + @Column(name = "BEGIN_TIME_") + @PropertyDef(label = "寮�濮嬫椂闂�") + private Date beginTime; + + @Column(name = "END_TIME_") + @PropertyDef(label = "鎴鏃堕棿") + private Date endTime; + + @PropertyDef(label = "璁″垝涓嬭揪鍗曚綅") + @Column(name = "jhxddw", length = 18) + private String jhxddw; + + @PropertyDef(label = "璁″垝涓嬭揪鏃堕棿") + @Column(name = "jhxdsj") + private Date jhxdsj; + + @Column(name = "CREATE_USER_", length = 30) + @PropertyDef(label = "鍒涘缓浜�") + private String createUser; + + @Column(name = "CREATE_TIME_") + @PropertyDef(label = "鍒涘缓鏃堕棿") + private Date createTime; + + @Column(name = "UPDATE_TIME_") + @PropertyDef(label = "鏁版嵁鏇存柊鏃堕棿") + private Date updateTime; + + @Column(name = "REMARK_", length = 250) + @PropertyDef(label = "澶囨敞") + private String remark; + + /** + * --------闄勪欢-------- + **/ + @Column(name = "FILE_ID_", length = 30) + @PropertyDef(label = "闄勪欢id") + private String fileId; + + @Column(name = "FILE_NAME_", length = 50) + @PropertyDef(label = "闄勪欢鍚嶇О") + private String fileName; + + @Column(name = "FILE_TIME_") + @PropertyDef(label = "闄勪欢涓婁紶鏃堕棿") + private Date fileTime; + + @Transient + private List<Fz61InoutPlanDetail> details; + +} -- Gitblit v1.9.3