From 17e23acb4e6e7743973a75ad28ffe48f02e39365 Mon Sep 17 00:00:00 2001
From: zhanghl <253316343@qq.com>
Date: 星期一, 21 四月 2025 09:18:48 +0800
Subject: [PATCH] ApsPartPlan 更新字段类型

---
 aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsPartPlan.java |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsPartPlan.java b/aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsPartPlan.java
index b82b0d4..2b1d185 100644
--- a/aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsPartPlan.java
+++ b/aps-modules/aps-core/src/main/java/com/aps/core/domain/ApsPartPlan.java
@@ -82,11 +82,11 @@
 
     /** 鐢熶骇鏁伴噺 */
     @Excel(name = "鐢熶骇鏁伴噺")
-    private Decimal productionQuantity;
+    private BigDecimal productionQuantity;
 
     /** 鑹搧鏁伴噺 */
     @Excel(name = "鑹搧鏁伴噺")
-    private Decimal goodProductsQuantity;
+    private BigDecimal goodProductsQuantity;
 
     /** 宸ュ簭鍙� */
     @Excel(name = "宸ュ簭鍙�")
@@ -311,22 +311,22 @@
         return versionNumber;
     }
 
-    public void setProductionQuantity(Decimal productionQuantity)
+    public void setProductionQuantity(BigDecimal productionQuantity)
     {
         this.productionQuantity = productionQuantity;
     }
 
-    public Decimal getProductionQuantity()
+    public BigDecimal getProductionQuantity()
     {
         return productionQuantity;
     }
 
-    public void setGoodProductsQuantity(Decimal goodProductsQuantity)
+    public void setGoodProductsQuantity(BigDecimal goodProductsQuantity)
     {
         this.goodProductsQuantity = goodProductsQuantity;
     }
 
-    public Decimal getGoodProductsQuantity()
+    public BigDecimal getGoodProductsQuantity()
     {
         return goodProductsQuantity;
     }

--
Gitblit v1.9.3