From 220b7854df1237bd10bda3f569afb57115c19c1e Mon Sep 17 00:00:00 2001
From: yuejunhao <2083483352@qq.com>
Date: 星期一, 08 一月 2024 14:05:10 +0800
Subject: [PATCH] 返库页面以及返库新增页面的完成

---
 north-glass-erp/src/main/java/com/example/erp/entity/sd/Product.java |   24 ++++++++++++++++++++++++
 1 files changed, 24 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
new file mode 100644
index 0000000..4555cb9
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/entity/sd/Product.java
@@ -0,0 +1,24 @@
+package com.example.erp.entity.sd;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import lombok.Data;
+
+@Data
+public class Product {
+    @TableId(type = IdType.AUTO)
+    private Integer id;
+    private String prodID;
+    private String product;
+    private String glassType;
+    private String typeName;
+    private Double totalThickness;
+    private Double thickness;
+    private String Query;
+    private String remarks;
+    private Integer state;
+    private String creator;
+    private String createTime;
+    private String updateTime;
+
+}

--
Gitblit v1.8.0