From e2aa651db9f17d58819329de571037edc0f9eba2 Mon Sep 17 00:00:00 2001
From: yaowanxin <3588231647@qq.com>
Date: 星期一, 23 六月 2025 18:13:37 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 src/main/java/com/ruoyi/inventory/domain/StockProduct.java |   33 +++++++++++++++++++++++++++++++++
 1 files changed, 33 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/ruoyi/inventory/domain/StockProduct.java b/src/main/java/com/ruoyi/inventory/domain/StockProduct.java
new file mode 100644
index 0000000..338fd25
--- /dev/null
+++ b/src/main/java/com/ruoyi/inventory/domain/StockProduct.java
@@ -0,0 +1,33 @@
+package inventory.domain;
+
+import java.io.Serializable;
+import lombok.Data;
+
+/**
+ * 
+ * @TableName stock_product
+ */
+@Data
+public class StockProduct implements Serializable {
+    /**
+     * 浜у搧ID
+     */
+    private Integer id;
+
+    /**
+     * 浜у搧澶х被锛堝鈥滀骇鍝�1鈥濓級
+     */
+    private String productCategory;
+
+    /**
+     * 瑙勬牸鍨嬪彿
+     */
+    private String specModel;
+
+    /**
+     * 鍗曚綅锛堝鈥滃惃鈥濓級
+     */
+    private String unit;
+
+    private static final long serialVersionUID = 1L;
+}
\ No newline at end of file

--
Gitblit v1.9.3