From 11430ae628f098654579811131abc522d679e870 Mon Sep 17 00:00:00 2001 From: czt <czt18638530771@163.com> Date: 星期一, 22 九月 2025 17:04:42 +0800 Subject: [PATCH] 上海对农接口调整-增加自动上传 --- src/main/java/com/fzzy/async/fzzy61/entity/Fz61InoutStockChange.java | 99 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 99 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/fzzy/async/fzzy61/entity/Fz61InoutStockChange.java b/src/main/java/com/fzzy/async/fzzy61/entity/Fz61InoutStockChange.java new file mode 100644 index 0000000..e97f488 --- /dev/null +++ b/src/main/java/com/fzzy/async/fzzy61/entity/Fz61InoutStockChange.java @@ -0,0 +1,99 @@ +package com.fzzy.async.fzzy61.entity; + +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.util.Date; + +/** + * @Desc: 鍊掍粨鍔熻兘锛�2023骞�5鏈�26鏃� 鏍规嵁鏂板浗绮鏇存柊浼樺寲 + * @author: Andy + * @update-time: 2023/5/26 + */ +@Data +@Entity +@Table(name = "D_INOUT_STOCK_CHANGE") +public class Fz61InoutStockChange { + + public static String SORT_PROP = "updateTime"; + /** + * 鍊掍粨鍗曞彿 + */ + @Id + @Column(name = "ID_", length = 32) + @PropertyDef(label = "鍊掍粨鍗曞彿", description = "鐢卞�掍粨鏃ユ湡(yyyyMMdd)+4浣嶉『搴忓彿缁勬垚") + 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 = 2) + @PropertyDef(label = "鍊掍粨绫诲瀷", description = "0锛氬�掍粨 1锛氱Щ搴�") + private String type; + + @Column(name = "PLAN_CODE_", length = 40) + @PropertyDef(label = "鍊掍粨璁″垝鏂囦欢缂栧彿", description = "鍊掍粨璁″垝鏂囦欢缂栧彿") + private String planCode; + + @Column(name = "NOTICE_ID_", length = 40) + @PropertyDef(label = "閫氱煡鍗曞彿", description = "閫氱煡鍗曞彿") + private String noticeId; + + @Column(name = "FOOD_VARIETY_", length = 10) + @PropertyDef(label = "绮鍝佺", description = "浠g爜涓嶈冻7浣嶉渶鍦ㄦ湯浣嶈ˉ0") + private String foodVariety; + + @Column(name = "DEPOT_ID_IN", length = 50) + @PropertyDef(label = "鍊掑叆浠撳簱") + private String depotIdIn; + + @Column(name = "DEPOT_ID_OUT", length = 50) + @PropertyDef(label = "鍊掑嚭浠撳簱") + private String depotIdOut; + + @Column(name = "CHANGE_DATE_") + @PropertyDef(label = "鍊掍粨鏃ユ湡", description = "yyyy-MM-dd") + private Date changeDate; + + @Column(name = "CHANGE_START_DATE_") + @PropertyDef(label = "鍊掍粨寮�濮嬫棩鏈�", description = "yyyy-MM-dd") + private Date changeStartDate; + + @Column(name = "CHANGE_END_DATE_") + @PropertyDef(label = "鍊掍粨缁撴潫鏃ユ湡", description = "yyyy-MM-dd") + private Date changeEndDate; + + @Column(name = "NUMBER_") + @PropertyDef(label = "鍊掍粨鏁伴噺", description = "鍗曚綅锛氬叕鏂�") + private Double number = 0.0; + + @Column(name = "UPDATE_TIME_") + @PropertyDef(label = "鏈�鍚庢洿鏂版椂闂�") + private Date updateTime; + + @Column(name = "UPDATE_USER_", length = 50) + @PropertyDef(label = "鏇存柊浜�") + private String updateUser; + + @Column(name = "bzw", length = 1) + @PropertyDef(label = "鍖呰鐗�", description = "1锛氶夯琚� 2锛氱紪缁囪 3锛氭暎瑁� 9锛氬叾浠�") + private String bzw; + + @Column(name = "bzbjs") + @PropertyDef(label = "鏍囧噯鍖呬欢鏁�", description = "鍗曚綅锛氫欢") + private Integer bzbjs = 0; + + @Column(name = "zxzydw", length = 256) + @PropertyDef(label = "瑁呭嵏浣滀笟鍗曚綅", description = "瑁呭嵏浣滀笟鐨勪汉鍛樺鍚嶆垨鍗曚綅鍚嶇О锛岀敤鍗婅閫楀彿鍒嗛殧") + private String zxzydw; + +} \ No newline at end of file -- Gitblit v1.9.3