From f4d7e303bf5290bf0709066acf6082c96703581c Mon Sep 17 00:00:00 2001
From: chenlu <1320612696@qq.com>
Date: 星期四, 01 八月 2024 12:09:36 +0800
Subject: [PATCH] 流程卡打印查询修改

---
 north-glass-erp/src/main/java/com/example/erp/entity/sd/Product.java |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/north-glass-erp/src/main/java/com/example/erp/entity/sd/Product.java b/north-glass-erp/src/main/java/com/example/erp/entity/sd/Product.java
index 8782d0d..dc7fb55 100644
--- a/north-glass-erp/src/main/java/com/example/erp/entity/sd/Product.java
+++ b/north-glass-erp/src/main/java/com/example/erp/entity/sd/Product.java
@@ -1,6 +1,7 @@
 package com.example.erp.entity.sd;
 
 import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableField;
 import com.baomidou.mybatisplus.annotation.TableId;
 import lombok.Data;
 
@@ -11,6 +12,8 @@
     @TableId(type = IdType.AUTO)
     private Long id;
     private String productName;
+    private String productAbbreviation;
+    private String typeId;
     private String typeName;
     private Double totalThickness;
     private Double thickness;
@@ -20,6 +23,7 @@
     private String creator;
     private LocalDate createTime;
     private LocalDate updateTime;
+    @TableField(select = false)
     private BasicGlassType basicGlassType;
 
 }

--
Gitblit v1.8.0