From 6da57b610d97be3f79084d43440e7823d707b249 Mon Sep 17 00:00:00 2001
From: hyingbo <1363390067@qq.com>
Date: 星期四, 04 九月 2025 17:54:55 +0800
Subject: [PATCH] 设备管理调整

---
 lxzn-module-eam-common/src/main/java/org/jeecg/modules/eam/dto/EquipmentCategoryStatistics.java |   76 ++++++++++++++++++++++++++++++++++++++
 1 files changed, 76 insertions(+), 0 deletions(-)

diff --git a/lxzn-module-eam-common/src/main/java/org/jeecg/modules/eam/dto/EquipmentCategoryStatistics.java b/lxzn-module-eam-common/src/main/java/org/jeecg/modules/eam/dto/EquipmentCategoryStatistics.java
new file mode 100644
index 0000000..94b755e
--- /dev/null
+++ b/lxzn-module-eam-common/src/main/java/org/jeecg/modules/eam/dto/EquipmentCategoryStatistics.java
@@ -0,0 +1,76 @@
+package org.jeecg.modules.eam.dto;
+
+import lombok.Data;
+import org.jeecgframework.poi.excel.annotation.Excel;
+
+import java.math.BigDecimal;
+
+@Data
+public class EquipmentCategoryStatistics {
+
+    /**
+     * 璁惧绉嶇被
+     */
+    @Excel(name = "璁惧绉嶇被", width = 15, orderNum = "1")
+    private String equipmentType;
+
+    /**
+     * 璁惧鎬绘暟
+     */
+    @Excel(name = "璁惧鎬绘暟", width = 15, orderNum = "2")
+    private Integer equipmentCount;
+
+    /**
+     * 鎬诲師鍊�
+     */
+    @Excel(name = "鎬诲師鍊�", width = 15, orderNum = "3")
+    private BigDecimal originalValue;
+
+    /**
+     * 楂樼簿搴︽�绘暟
+     */
+    @Excel(name = "楂樼簿搴︽�绘暟", width = 15, orderNum = "4")
+    private Integer highPrecisionCount;
+
+    /**
+     * 楂樼簿搴﹀師鍊�
+     */
+    @Excel(name = "楂樼簿搴﹀師鍊�", width = 15, orderNum = "5")
+    private BigDecimal highPrecisionOriginalValue;
+
+    /**
+     * 鍥戒骇鎬绘暟
+     */
+    @Excel(name = "鍥戒骇鎬绘暟", width = 15, orderNum = "6")
+    private Integer domesticCount;
+
+    /**
+     * 鍥戒骇鍘熷��
+     */
+    @Excel(name = "鍥戒骇鍘熷��", width = 15, orderNum = "7")
+    private BigDecimal domesticOriginalValue;
+
+    /**
+     * 杩涘彛鎬绘暟
+     */
+    @Excel(name = "杩涘彛鎬绘暟", width = 15, orderNum = "8")
+    private Integer importCount;
+
+    /**
+     * 杩涘彛鍘熷��
+     */
+    @Excel(name = "杩涘彛鍘熷��", width = 15, orderNum = "9")
+    private BigDecimal importOriginalValue;
+
+    /**
+     * 瀹屽ソ鎬绘暟
+     */
+    @Excel(name = "瀹屽ソ鎬绘暟", width = 15, orderNum = "10")
+    private Integer intactCount;
+
+    /**
+     * 瀹屽ソ鍘熷��
+     */
+    @Excel(name = "瀹屽ソ鍘熷��", width = 15, orderNum = "11")
+    private BigDecimal intactOriginalValue;
+}

--
Gitblit v1.9.3