From d18505cc87fa30a5b202057bbcc4236986efc80a Mon Sep 17 00:00:00 2001
From: pang.jiabao <pang_jiabao@163.com>
Date: 星期三, 11 三月 2026 13:16:55 +0800
Subject: [PATCH] 纽维盛wms初始化-截至现在wms2.0已完善(带数据库)
---
src/main/java/com/zy/asrs/entity/OrderDetlPakinLog.java | 22 +++++++++++-----------
1 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/src/main/java/com/zy/asrs/entity/OrderDetlPakinLog.java b/src/main/java/com/zy/asrs/entity/OrderDetlPakinLog.java
index bfed386..8f4b9f8 100644
--- a/src/main/java/com/zy/asrs/entity/OrderDetlPakinLog.java
+++ b/src/main/java/com/zy/asrs/entity/OrderDetlPakinLog.java
@@ -10,11 +10,11 @@
import com.zy.asrs.service.BasProcessProceduresService;
import com.zy.asrs.service.BasQualityTestingService;
import com.zy.asrs.service.OrderService;
-import com.zy.common.utils.Synchro;
import com.zy.system.entity.User;
import com.zy.system.service.UserService;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
+import org.springframework.beans.BeanUtils;
import org.springframework.format.annotation.DateTimeFormat;
import java.io.Serializable;
@@ -23,7 +23,7 @@
import java.util.Objects;
@Data
-@TableName("man_order_detl_pakin_log")
+@TableName("man_order_detl_log_pakin")
public class OrderDetlPakinLog implements Serializable {
private static final long serialVersionUID = 1L;
@@ -32,7 +32,7 @@
* ID
*/
@ApiModelProperty(value = "ID")
- @TableId(value = "id", type = IdType.AUTO)
+ @TableId(value = "id")
private Long id;
/**
@@ -186,12 +186,12 @@
@ApiModelProperty(value = "閲嶉噺")
private Double weight;
- /**
- * 闀垮害
- */
- @ApiModelProperty(value = "闀垮害")
- @TableField("man_length")
- private Double manLength;
+// /**
+// * 闀垮害
+// */
+// @ApiModelProperty(value = "闀垮害")
+// @TableField("man_length")
+// private Double manLength;
/**
* 浣撶Н
@@ -379,7 +379,7 @@
this.itemNum = itemNum;
this.safeQty = safeQty;
this.weight = weight;
- this.manLength = manLength;
+// this.manLength = manLength;
this.volume = volume;
this.threeCode = threeCode;
this.supp = supp;
@@ -575,7 +575,7 @@
}
public void sync(Object source) {
- Synchro.Copy(source, this);
+ BeanUtils.copyProperties(source, this);
}
}
\ No newline at end of file
--
Gitblit v1.9.1