From e81a3446617207688cd60fe5b1717a18c5cb9e32 Mon Sep 17 00:00:00 2001
From: skyouc
Date: 星期一, 26 五月 2025 18:14:36 +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 | 31 ++++++++++++++++++++++++++++---
1 files changed, 28 insertions(+), 3 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 05b6fc6..6c518f5 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
@@ -3,6 +3,9 @@
import com.baomidou.mybatisplus.annotation.TableLogic;
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;
import java.util.Date;
@@ -22,6 +25,7 @@
import java.util.Date;
@Data
+@Accessors(chain = true)
@TableName("man_delivery_item")
public class DeliveryItem implements Serializable {
@@ -56,10 +60,16 @@
private String matnrCode;
/**
+ * 鐗╂枡ID
+ */
+ @ApiModelProperty("鐗╂枡ID")
+ private Long matnrId;
+
+ /**
* 鐗╂枡鍚嶇О
*/
@ApiModelProperty(value= "鐗╂枡鍚嶇О")
- private String matnrName;
+ private String maktx;
/**
* 鍔ㄦ�佸瓧娈电储寮�
@@ -115,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: 鍐荤粨
*/
@@ -145,6 +167,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;
/**
@@ -158,6 +181,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;
/**
@@ -168,11 +192,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