From c8fde8647b48e7c7d9b3beb6e8c39459f07c9eb2 Mon Sep 17 00:00:00 2001 From: skyouc Date: 星期四, 08 五月 2025 14:55:46 +0800 Subject: [PATCH] Merge branch 'devlop' of http://47.97.1.152:5880/r/wms-master into devlop --- rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/DeliveryItem.java | 29 +++++++++++++++++++++++++---- 1 files changed, 25 insertions(+), 4 deletions(-) diff --git a/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/DeliveryItem.java b/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/DeliveryItem.java index d3148b5..9b7ba65 100644 --- a/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/DeliveryItem.java +++ b/rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/DeliveryItem.java @@ -4,6 +4,7 @@ import java.text.SimpleDateFormat; import java.util.Date; +import com.fasterxml.jackson.annotation.JsonFormat; import lombok.experimental.Accessors; import org.springframework.format.annotation.DateTimeFormat; import java.text.SimpleDateFormat; @@ -59,10 +60,16 @@ private String matnrCode; /** + * 鐗╂枡ID + */ + @ApiModelProperty("鐗╂枡ID") + private Long matnrId; + + /** * 鐗╂枡鍚嶇О */ @ApiModelProperty(value= "鐗╂枡鍚嶇О") - private String matnrName; + private String maktx; /** * 鍔ㄦ�佸瓧娈电储寮� @@ -118,6 +125,18 @@ @ApiModelProperty(value= "渚涘簲鍟嗘壒娆�") private String splrBatch; + @ApiModelProperty("鎵规") + private String batch; + + @ApiModelProperty("璺熻釜鐮�") + private String trackCode; + + @ApiModelProperty("鐢熶骇鏃ユ湡") + private Date prodTime; + + @ApiModelProperty("鍖呰") + private String packName; + /** * 鐘舵�� 1: 姝e父 0: 鍐荤粨 */ @@ -128,7 +147,6 @@ * 鏄惁鍒犻櫎 1: 鏄� 0: 鍚� */ @ApiModelProperty(value= "鏄惁鍒犻櫎 1: 鏄� 0: 鍚� ") - @TableLogic private Integer deleted; /** @@ -148,6 +166,7 @@ */ @ApiModelProperty(value= "娣诲姞鏃堕棿") @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") + @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") private Date createTime; /** @@ -161,6 +180,7 @@ */ @ApiModelProperty(value= "淇敼鏃堕棿") @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") + @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") private Date updateTime; /** @@ -171,11 +191,12 @@ public DeliveryItem() {} - public DeliveryItem(Long deliveryId,String platItemId,String matnrCode,String matnrName,String fieldsIndex,String unit,Double anfme,Double qty,Double nromQty,Double printQty,String splrName,String splrCode,String splrBatch,Integer status,Integer deleted,Integer tenantId,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) { + public DeliveryItem(Long deliveryId,String platItemId, Long matnrId,String matnrCode,String matnrName,String fieldsIndex,String unit,Double anfme,Double qty,Double nromQty,Double printQty,String splrName,String splrCode,String splrBatch,Integer status,Integer deleted,Integer tenantId,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) { this.deliveryId = deliveryId; this.platItemId = platItemId; + this.matnrId = matnrId; this.matnrCode = matnrCode; - this.matnrName = matnrName; + this.maktx = matnrName; this.fieldsIndex = fieldsIndex; this.unit = unit; this.anfme = anfme; -- Gitblit v1.9.1