From 666af2a41be37f09cd6d99c8e2e338c5225f511c Mon Sep 17 00:00:00 2001
From: lixiangyu <lixiangyu@xalxzn.com>
Date: 星期三, 20 八月 2025 17:53:35 +0800
Subject: [PATCH] feat(cms): 导出刀具入库单

---
 src/main/java/org/jeecg/modules/mes/entity/MesWorkReporting.java |   28 +++++++++++++++++++++++-----
 1 files changed, 23 insertions(+), 5 deletions(-)

diff --git a/src/main/java/org/jeecg/modules/mes/entity/MesWorkReporting.java b/src/main/java/org/jeecg/modules/mes/entity/MesWorkReporting.java
index b9e43ff..60d4545 100644
--- a/src/main/java/org/jeecg/modules/mes/entity/MesWorkReporting.java
+++ b/src/main/java/org/jeecg/modules/mes/entity/MesWorkReporting.java
@@ -1,9 +1,6 @@
 package org.jeecg.modules.mes.entity;
 
-import com.baomidou.mybatisplus.annotation.IdType;
-import com.baomidou.mybatisplus.annotation.TableId;
-import com.baomidou.mybatisplus.annotation.TableLogic;
-import com.baomidou.mybatisplus.annotation.TableName;
+import com.baomidou.mybatisplus.annotation.*;
 import com.fasterxml.jackson.annotation.JsonFormat;
 import io.swagger.annotations.ApiModel;
 import io.swagger.annotations.ApiModelProperty;
@@ -15,6 +12,7 @@
 import org.springframework.format.annotation.DateTimeFormat;
 
 import java.io.Serializable;
+import java.math.BigDecimal;
 import java.util.Date;
 
 /**
@@ -82,7 +80,7 @@
 	/**鏁伴噺*/
 	@Excel(name = "鏁伴噺", width = 15)
     @ApiModelProperty(value = "鏁伴噺")
-    private Double quantity;
+    private BigDecimal quantity;
 	/**鎶ュ伐浜�*/
 	@Excel(name = "鎶ュ伐浜�", width = 15)
     @ApiModelProperty(value = "鎶ュ伐浜�")
@@ -103,4 +101,24 @@
 	@Dict(dicCode = "print_status")
     @ApiModelProperty(value = "鎴愬搧涓嬬嚎鎵撳嵃鐘舵��")
     private String printStatus;
+
+    @TableField(exist = false)
+    @ApiModelProperty(value = "璁㈠崟鐢熶骇鍙�")
+    private String orderCode;
+    @TableField(exist = false)
+    @ApiModelProperty(value = "宸ュ崟鍙�")
+    private String workOrderCode;
+    @TableField(exist = false)
+    @ApiModelProperty(value = "浜х嚎鍚嶇О")
+    private String factoryName;
+    @TableField(exist = false)
+    @ApiModelProperty(value = "浠撳簱鍚嶇О")
+    private String warehouseName;
+    @TableField(exist = false)
+    @ApiModelProperty(value = "浠撳簱缂栫爜")
+    private String warehouseCode;
+    @TableField(exist = false)
+    @ApiModelProperty(value = "鎶ュ伐绫诲瀷(鎴愬搧FINISHED銆佸崐鎴愬搧HALF)")
+    private String reportType;
+
 }

--
Gitblit v1.9.3