From 182c04e399f5db26406234767f7ef34b5adc0015 Mon Sep 17 00:00:00 2001
From: zhangherong <571457620@qq.com>
Date: 星期三, 20 八月 2025 18:19:51 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 src/main/java/org/jeecg/modules/mes/entity/MesProductionWorkOrder.java |   24 ++++++++++++++++++++++--
 1 files changed, 22 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/jeecg/modules/mes/entity/MesProductionWorkOrder.java b/src/main/java/org/jeecg/modules/mes/entity/MesProductionWorkOrder.java
index db5c5ca..48ca5e5 100644
--- a/src/main/java/org/jeecg/modules/mes/entity/MesProductionWorkOrder.java
+++ b/src/main/java/org/jeecg/modules/mes/entity/MesProductionWorkOrder.java
@@ -13,6 +13,7 @@
 import org.springframework.format.annotation.DateTimeFormat;
 
 import java.io.Serializable;
+import java.math.BigDecimal;
 import java.util.Date;
 
 /**
@@ -69,7 +70,7 @@
 	/**璁″垝鐢熶骇鏁伴噺*/
 	@Excel(name = "璁″垝鐢熶骇鏁伴噺", width = 15)
     @ApiModelProperty(value = "璁″垝鐢熶骇鏁伴噺")
-    private Double planQuantity;
+    private BigDecimal planQuantity;
 	/**浜х嚎ID(鍐椾綑)*/
 	@Excel(name = "浜х嚎ID(鍐椾綑)", width = 15)
     @Dict(dictTable = "base_factory", dicCode = "id", dicText = "factory_name")
@@ -96,10 +97,29 @@
 	@Dict(dicCode = "work_order_status")
     @ApiModelProperty(value = "宸ュ崟鐘舵��")
     private String workOrderStatus;
+    /**鏄惁閫氳繃榻愬鎬ф鏌�*/
+    @Excel(name = "鏄惁閫氳繃榻愬鎬ф鏌�", width = 15, dicCode = "yn")
+    @Dict(dicCode = "yn")
+    @ApiModelProperty(value = "鏄惁閫氳繃榻愬鎬ф鏌�")
+    private String completenessCheckFlag = CommonConstant.DEFAULT_0;
+    /**鏄惁閫氳繃璁惧鐐规*/
+    @Excel(name = "鏄惁閫氳繃璁惧鐐规", width = 15, dicCode = "yn")
+    @Dict(dicCode = "yn")
+    @ApiModelProperty(value = "鏄惁閫氳繃璁惧鐐规")
+    private String equipmentInspectionFlag = CommonConstant.DEFAULT_0;
+    /**鏄惁閫氳繃宸ヨ壓鐐规*/
+    @Excel(name = "鏄惁閫氳繃宸ヨ壓鐐规", width = 15, dicCode = "yn")
+    @Dict(dicCode = "yn")
+    @ApiModelProperty(value = "鏄惁閫氳繃宸ヨ壓鐐规")
+    private String processInspectionFlag = CommonConstant.DEFAULT_0;
 	/**瀹為檯鎶ュ伐鏁伴噺*/
 	@Excel(name = "瀹為檯鎶ュ伐鏁伴噺", width = 15)
     @ApiModelProperty(value = "瀹為檯鎶ュ伐鏁伴噺")
-    private Double actualQuantity;
+    private BigDecimal actualQuantity = BigDecimal.ZERO;
+    /**宸茬敓浜ф墭鏁帮紙褰撳墠鐝宸茬敓浜х殑鎵樻暟閲忥紝姣忔鎶ュ伐鏃舵洿鏂帮級*/
+    @Excel(name = "宸茬敓浜ф墭鏁�", width = 15)
+    @ApiModelProperty(value = "宸茬敓浜ф墭鏁�")
+    private Integer finishedPallets = 0;
 	/**鍙戝竷浜�*/
 	@Excel(name = "鍙戝竷浜�", width = 15)
     @ApiModelProperty(value = "鍙戝竷浜�")

--
Gitblit v1.9.3