From 8821a4d7bfb4e0eaed9a40a2fd317f6b2b256bb4 Mon Sep 17 00:00:00 2001
From: guoyujie <guoyujie@ng.com>
Date: 星期四, 11 九月 2025 18:08:23 +0800
Subject: [PATCH] 提交 入库箱号判断条件
---
north-glass-erp/src/main/java/com/example/erp/entity/mm/FinishedGoodsInventory.java | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/north-glass-erp/src/main/java/com/example/erp/entity/mm/FinishedGoodsInventory.java b/north-glass-erp/src/main/java/com/example/erp/entity/mm/FinishedGoodsInventory.java
index 0f1cc30..8981f66 100644
--- a/north-glass-erp/src/main/java/com/example/erp/entity/mm/FinishedGoodsInventory.java
+++ b/north-glass-erp/src/main/java/com/example/erp/entity/mm/FinishedGoodsInventory.java
@@ -1,6 +1,7 @@
package com.example.erp.entity.mm;
import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.example.erp.entity.sd.*;
import lombok.Data;
@@ -27,7 +28,11 @@
private LocalDate endTime;
private String processId;
private String boxNo;
+ @TableField(select = false,exist = false)
private Order order;
+ @TableField(select = false,exist = false)
private OrderDetail orderDetail;
+ @TableField(select = false,exist = false)
+ private Double weight;
}
--
Gitblit v1.8.0