From 0762d58582ff06729d486fbee211de2858780924 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9B=B9=E9=B9=8F=E9=A3=9E?= Date: Tue, 2 Dec 2025 09:43:29 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20bug-935=20=E9=92=A2=E7=BB=93=E6=9E=84?= =?UTF-8?q?=E8=AE=A2=E5=8D=95=E7=BC=BA=E4=BB=B6=E5=8A=9F=E8=83=BD=E4=BC=98?= =?UTF-8?q?=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../entity/WmsStructuralPackageOrderTrayItem.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/nflg-wms-repository/src/main/java/com/nflg/wms/repository/entity/WmsStructuralPackageOrderTrayItem.java b/nflg-wms-repository/src/main/java/com/nflg/wms/repository/entity/WmsStructuralPackageOrderTrayItem.java index b49a2596..a9227dc3 100644 --- a/nflg-wms-repository/src/main/java/com/nflg/wms/repository/entity/WmsStructuralPackageOrderTrayItem.java +++ b/nflg-wms-repository/src/main/java/com/nflg/wms/repository/entity/WmsStructuralPackageOrderTrayItem.java @@ -1,8 +1,6 @@ package com.nflg.wms.repository.entity; -import com.baomidou.mybatisplus.annotation.IdType; -import com.baomidou.mybatisplus.annotation.TableId; -import com.baomidou.mybatisplus.annotation.TableName; +import com.baomidou.mybatisplus.annotation.*; import lombok.Getter; import lombok.Setter; import lombok.ToString; @@ -16,7 +14,6 @@ import java.time.LocalDateTime; *

* 钢构件发货单托盘物料清单 *

- * * @author 代码生成器生成 * @since 2025 */ @@ -110,5 +107,6 @@ public class WmsStructuralPackageOrderTrayItem implements Serializable { /** * 备注 */ + @TableField(updateStrategy = FieldStrategy.ALWAYS) private String remark; }