From ee96821fc7990857ad6477690a5758f8c0ebaa66 Mon Sep 17 00:00:00 2001 From: YYC <1833023622@qq.com> Date: 星期一, 22 九月 2025 10:32:19 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- src/main/java/com/fzzy/async/fzzy61/entity/Fz61InoutRecordItem.java | 102 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 102 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/fzzy/async/fzzy61/entity/Fz61InoutRecordItem.java b/src/main/java/com/fzzy/async/fzzy61/entity/Fz61InoutRecordItem.java new file mode 100644 index 0000000..67fc0a1 --- /dev/null +++ b/src/main/java/com/fzzy/async/fzzy61/entity/Fz61InoutRecordItem.java @@ -0,0 +1,102 @@ +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; + +/** + * 鍑哄叆搴撴祦姘村瓧琛� + * @author + */ +@Data +@Entity +@Table(name = "D_INOUT_RECORD_ITEM") +public class Fz61InoutRecordItem { + + @Id + @Column(name = "ID_", length = 40) + @PropertyDef(label = "涓婚敭id", description = "鏍规嵁涓�瀹氱殑瑙勫垯鐢熸垚") + private String id; + + @Column(name = "RECORD_ID_", length = 40) + @PropertyDef(label = "娴佹按Id") + private String recordId; + + @Column(name = "DEPOT_ID_", length = 50) + @PropertyDef(label = "瑁呭嵏浠撳簱") + private String depotId; + + @Column(name = "CAR_NUM_", length = 20) + @PropertyDef(label = "鑸硅繍杞﹁締搴忓彿") + private String carNum; + + @Column(name = "CAR_NAME_", length = 20) + @PropertyDef(label = "鑸硅繍杞﹁締鍚嶇О") + private String carName; + + @Column(name = "TYPE_", length = 10) + @PropertyDef(label = "鍑哄叆搴撶被鍨�", description = "鍑哄簱锛屽叆搴�") + private String type; + + @Column(name = "PROGRESS_", length = 20) + @PropertyDef(label = "娴佺▼杩涘害") + private String progress; + + @Column(name = "RECORD_STATUS_", length = 10) + @PropertyDef(label = "鏁版嵁鐘舵��", description = "鏁版嵁鐘舵�侊紝姝e父锛屽紓甯革紙2灏忔椂鍐呴噸澶嶅嚭鍏ュ簱绛夛級锛岃ˉ褰�") + private String recordStatus; + + @Column(name = "DE_") + @PropertyDef(label = "鎵i噸", description = "鍗曚綅KG") + private Double de = 0.0; + + @Column(name = "FULL_WEIGHT_") + @PropertyDef(label = "婊¤溅绉伴噸", description = "鍏ュ簱鏃跺�欒〃绀虹涓�娆$О閲嶏紝鍑哄簱鏃跺�欒〃绀虹浜屾绉伴噸锛屽崟浣岾G") + private Double fullWeight = 0.0; + + @Column(name = "FULL_WEIGHT_TIME_") + @PropertyDef(label = "婊¤溅绉伴噸鏃堕棿") + private Date fullWeightTime; + + @Column(name = "FULL_WEIGHT_USER_", length = 40) + @PropertyDef(label = "婊¤溅绉伴噸浜�") + private String fullWeightUser; + + @Column(name = "EMPTY_WEIGHT_") + @PropertyDef(label = "绌鸿溅绉伴噸", description = "鍏ュ簱鏃惰〃绀虹浜屾绉伴噸锛屽嚭搴撴椂鍊欒〃绀虹涓�娆$О閲嶏紝鍗曚綅KG") + private Double emptyWeight = 0.0; + + @Column(name = "EMPTY_WEIGHT_TIME_") + @PropertyDef(label = "绌鸿溅绉伴噸鏃堕棿") + private Date emptyWeightTime; + + @Column(name = "EMPTY_WEIGHT_USER_") + @PropertyDef(label = "绌鸿溅绉伴噸浜�") + private String emptyWeightUser; + + @Column(name = "NET_WEIGHT_") + @PropertyDef(label = "鍑�閲�", description = "鍗曚綅KG") + private Double netWeight = 0.0; + + @Column(name = "SETTLE_WEIGHT_") + @PropertyDef(label = "缁撶畻鍑�閲�", description = "鎵i噸鍚庡噣閲嶏紝缁撶畻鍑�閲嶏紝鍗曚綅KG") + private Double settleWeight = 0.0; + + @Column(name = "RECORD_WEIGHT_") + @PropertyDef(label = "鍏ュ簱閲嶉噺", description = "鎵i噸鍚庡噣閲嶏紝缁撶畻鍑�閲嶏紝琛ュ寘鎷閲嶏紝鍗曚綅KG") + private Double recordWeight = 0.0; + + @Column(name = "CREATE_TIME_") + @PropertyDef(label = "鍒涘缓鏃堕棿") + private Date createTime; + + // 澶囨敞 + @Column(name = "REMARKS_", length = 200) + @PropertyDef(label = "澶囨敞淇℃伅") + private String remarks; +} -- Gitblit v1.9.3