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/Fz61DepotBookStore.java | 88 ++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 88 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/fzzy/async/fzzy61/entity/Fz61DepotBookStore.java b/src/main/java/com/fzzy/async/fzzy61/entity/Fz61DepotBookStore.java new file mode 100644 index 0000000..b1988c5 --- /dev/null +++ b/src/main/java/com/fzzy/async/fzzy61/entity/Fz61DepotBookStore.java @@ -0,0 +1,88 @@ +package com.fzzy.async.fzzy61.entity; + +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 + * + * 鎸変粨搴撹繘琛岀粺璁★紝姣忎釜鏈堝簳缁熻涓�娆�(鍥犱笂娴峰競璐﹂潰搴撳瓨鎺ュ彛涓烘寜璐т綅缁熻锛岃浆鎹㈡帴鍙f湇鍔℃椂鏍规嵁鐪佷唤瑕佹眰缁熻鎴愬搴旂殑璐﹂潰搴撳瓨) + **/ +@Data +@Entity +@Table(name = "D_DEPOT_BOOK_STORE") +public class Fz61DepotBookStore implements Serializable { + + public static String SORT_PROP = "id"; + + @Id + @Column(name = "ID_", length = 40) + @PropertyDef(label = "涓婚敭", description = "瑙勫垯锛氫粨搴撶紪鐮乢yyyyMMdd") + private String id; + + @Column(name = "COMPANY_ID_", length = 10) + @PropertyDef(label = "缁勭粐缂栫爜") + private String companyId; + + @Column(name = "DEPT_ID_", length = 20) + @PropertyDef(label = "搴撳尯浠g爜") + private String deptId; + + @Column(name = "DEPOT_ID_", length = 30) + @PropertyDef(label = "浠撳簱缂栫爜", description = "鐩墠涓婃捣浣跨敤") + private String depotId; + + @PropertyDef(label = "绮鎬ц川浠g爜", description = "鐩墠涓婃捣浣跨敤") + @Column(name = "lsxzdm", length = 7) + private String lsxzdm; + + @Column(name = "lspzdm", length = 7) + @PropertyDef(label = "绮鍝佺浠g爜") + private String lspzdm; + + @Column(name = "nd", length = 4) + @PropertyDef(label = "骞村害") + private String nd; + + @Column(name = "yf", length = 2) + @PropertyDef(label = "鏈堜唤") + private String yf; + + @Column(name = "qcsl", precision = 20, scale = 3) + @PropertyDef(label = "鏈熷垵鏁伴噺", description = "鍗曚綅锛氬叕鏂�") + private Double qcsl = 0.0; + + @Column(name = "bqsrsl", precision = 20, scale = 3) + @PropertyDef(label = "鏈湡鏀跺叆鏁伴噺", description = "鍗曚綅锛氬叕鏂�") + private Double bqsrsl = 0.0; + + @Column(name = "bqzcsl", precision = 20, scale = 3) + @PropertyDef(label = "鏈湡鏀嚭鏁伴噺", description = "鍗曚綅锛氬叕鏂�") + private Double bqzcsl = 0.0; + + @Column(name = "qmye", precision = 20, scale = 3) + @PropertyDef(label = "鏈熸湯鏁伴噺", description = "鍗曚綅锛氬叕鏂�") + private Double qmye = 0.0; + + @Column(name = "yjbz") + @PropertyDef(label = "鏈堢粨鏍囧織", description = "0锛氭湀缁擄紱1 鏈湀缁�") + private Integer yjbz; + + @Column(name = "ywrq") + @PropertyDef(label = "涓氬姟鏃ユ湡") + private Date ywrq; + + @Column(name = "zhgxsj") + @JSONField(format = "yyyy-MM-dd HH:mm:ss") + @PropertyDef(label = "鏈�鍚庢洿鏂版椂闂�") + private Date zhgxsj; + +} -- Gitblit v1.9.3