From a660db06773007b1be690e0674829c00a57aeb7b Mon Sep 17 00:00:00 2001
From: 廖井涛 <2265517004@qq.com>
Date: 星期三, 24 十二月 2025 16:21:23 +0800
Subject: [PATCH] 订单首页流程卡新增楼层编号显示

---
 north-glass-erp/src/main/java/com/example/erp/entity/mm/FinishedGoodsInventory.java |   10 +++++++++-
 1 files changed, 9 insertions(+), 1 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 d471eb9..5813c8c 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;
@@ -25,8 +26,15 @@
     private String remark;
     private LocalDate updateTime;
     private LocalDate endTime;
-
+    private String processId;
+    private String boxNo;
+    private Double computeArea;
+    private Double computeGrossArea;
+    @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