From 37532f5802eae207940b8bd9812ee0b4ca308d65 Mon Sep 17 00:00:00 2001
From: guoyuji <guoyujie@ng.com>
Date: 星期二, 27 二月 2024 13:50:33 +0800
Subject: [PATCH] 订单,产品前后端数据提交

---
 north-glass-erp/src/main/java/com/example/erp/entity/sd/Product.java |    3 +++
 1 files changed, 3 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..d466aaf 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,7 @@
     @TableId(type = IdType.AUTO)
     private Long id;
     private String productName;
+    private String typeId;
     private String typeName;
     private Double totalThickness;
     private Double thickness;
@@ -20,6 +22,7 @@
     private String creator;
     private LocalDate createTime;
     private LocalDate updateTime;
+    @TableField(select = false)
     private BasicGlassType basicGlassType;
 
 }

--
Gitblit v1.8.0