From 6c7f3a2e780f45e57bb341a5faedac932928a10e Mon Sep 17 00:00:00 2001
From: liyong <18434998025@163.com>
Date: 星期四, 23 四月 2026 16:33:16 +0800
Subject: [PATCH] feat(process): 添加工艺路线单位数量默认值设置

---
 src/main/java/com/ruoyi/basic/pojo/ProductModel.java |   24 +++++++++++++++---------
 1 files changed, 15 insertions(+), 9 deletions(-)

diff --git a/src/main/java/com/ruoyi/basic/pojo/ProductModel.java b/src/main/java/com/ruoyi/basic/pojo/ProductModel.java
index d5e0aac..3fc2b1e 100644
--- a/src/main/java/com/ruoyi/basic/pojo/ProductModel.java
+++ b/src/main/java/com/ruoyi/basic/pojo/ProductModel.java
@@ -6,6 +6,7 @@
 import lombok.Data;
 
 import java.math.BigDecimal;
+import java.time.LocalDateTime;
 
 @Data
 @TableName("product_model")
@@ -29,9 +30,6 @@
     @Excel(name = "浜у搧鍚嶇О")
     private String productName;
 
-    @Excel(name = "浜у搧缂栫爜")
-    private String productCode;
-
     /**
      * 瑙勬牸鍨嬪彿
      */
@@ -41,14 +39,12 @@
     /**
      * 鍗曚綅
      */
-    @Excel(name = "鍗曚綅")
+    @Excel(name = "涓诲崟浣�")
     private String unit;
 
-    /**
-     * 鐢熶骇鐐掓満
-     */
-    @Excel(name = "鐢熶骇鐐掓満")
-    private String speculativeTradingName;
+    @Excel(name = "杈呭崟浣�")
+    private String subUnit;
+
 
     @ApiModelProperty(value = "绉熸埛ID")
     @TableField(fill = FieldFill.INSERT)
@@ -62,4 +58,14 @@
     @TableField(exist = false)
     @Excel(name = "鍓╀綑搴撳瓨")
     private BigDecimal stockQuantity;
+
+    @TableField(exist = false)
+    private LocalDateTime createTime;
+    @ApiModelProperty(value = "鍒涘缓鐢ㄦ埛")
+    @TableField(fill = FieldFill.INSERT)
+    private Integer createUser;
+
+    @TableField(fill = FieldFill.INSERT)
+    private Long deptId;
+
 }

--
Gitblit v1.9.3