From 809f2703ce14d4c76eee5a998aeca064a340780a Mon Sep 17 00:00:00 2001
From: zenglf <18502938215@163.com>
Date: 星期三, 25 十月 2023 18:41:15 +0800
Subject: [PATCH] 维修工单管理

---
 lxzn-module-eam/src/main/java/org/jeecg/modules/eam/vo/InspectionProjectImportVo.java |   51 +++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 51 insertions(+), 0 deletions(-)

diff --git a/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/vo/InspectionProjectImportVo.java b/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/vo/InspectionProjectImportVo.java
new file mode 100644
index 0000000..643baf0
--- /dev/null
+++ b/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/vo/InspectionProjectImportVo.java
@@ -0,0 +1,51 @@
+package org.jeecg.modules.eam.vo;
+
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+import lombok.experimental.Accessors;
+import org.jeecgframework.poi.excel.annotation.Excel;
+
+import java.math.BigDecimal;
+
+
+@Data
+@Accessors(chain = true)
+public class InspectionProjectImportVo {
+
+    @Excel(name= "鐐规椤圭洰鍒嗙被")
+    private String inspectionProjectCategoryId;
+
+    @Excel(name="鐐规椤圭洰缂栫爜")
+    private String num;
+
+    @Excel(name = "鐐规椤圭洰鍚嶇О")
+    private String name;
+
+    @Excel(name = "璁¢噺鍗曚綅",dictTable = "mom_base_unit", dicCode = "id", dicText = "name")
+    private String unitId;
+
+    @Excel(name = "妫�楠屽�肩被鍨�",dicCode = "test_value_type")
+    private String testValueType;
+
+    @Excel(name = "鐐规鏂规硶",dicCode = "inspection_method")
+    private String inspectionMethod;
+
+    @Excel(name = "妫�娴嬫爣鍑�")
+    private String detectionStandard;
+
+    @Excel(name = "鐐规宸ュ叿")
+    private String inspectionTool;
+
+    @Excel(name = "鍚嶄箟鍊�")
+    private BigDecimal surfaceValue;
+
+    @Excel(name = "涓婂亸宸�")
+    private BigDecimal upValue;
+
+    @Excel(name = "涓嬪亸宸�")
+    private BigDecimal downValue;
+
+    @Excel(name = "澶囨敞")
+    private String remark;
+
+}

--
Gitblit v1.9.3