From 3471290659516cf21db3211a9053daff5f283e03 Mon Sep 17 00:00:00 2001
From: zhuguifei <312353457@qq.com>
Date: 星期五, 20 三月 2026 15:50:18 +0800
Subject: [PATCH] feat: 基础数据仪器管理、判定依据、判定依据明细
---
RuoYi-Vue-Plus/ruoyi-modules/ruoyi-qa/src/main/java/org/dromara/qa/md/domain/vo/MdInstrumentVo.java | 87 +++++++++++++++++++++++++++++++++++++++++++
1 files changed, 87 insertions(+), 0 deletions(-)
diff --git a/RuoYi-Vue-Plus/ruoyi-modules/ruoyi-qa/src/main/java/org/dromara/qa/md/domain/vo/MdInstrumentVo.java b/RuoYi-Vue-Plus/ruoyi-modules/ruoyi-qa/src/main/java/org/dromara/qa/md/domain/vo/MdInstrumentVo.java
new file mode 100644
index 0000000..ea2e7fa
--- /dev/null
+++ b/RuoYi-Vue-Plus/ruoyi-modules/ruoyi-qa/src/main/java/org/dromara/qa/md/domain/vo/MdInstrumentVo.java
@@ -0,0 +1,87 @@
+package org.dromara.qa.md.domain.vo;
+
+import org.dromara.qa.md.domain.MdInstrument;
+import cn.idev.excel.annotation.ExcelIgnoreUnannotated;
+import cn.idev.excel.annotation.ExcelProperty;
+import org.dromara.common.excel.annotation.ExcelDictFormat;
+import org.dromara.common.excel.convert.ExcelDictConvert;
+import io.github.linpeilie.annotations.AutoMapper;
+import lombok.Data;
+
+import java.io.Serial;
+import java.io.Serializable;
+import java.util.Date;
+
+
+
+/**
+ * 娴嬮噺浠櫒瑙嗗浘瀵硅薄 md_instrument
+ *
+ * @author zhuguifei
+ * @date 2026-03-18
+ */
+@Data
+@ExcelIgnoreUnannotated
+@AutoMapper(target = MdInstrument.class)
+public class MdInstrumentVo implements Serializable {
+
+ @Serial
+ private static final long serialVersionUID = 1L;
+
+ /**
+ * 缂栫爜
+ */
+ @ExcelProperty(value = "缂栫爜")
+ private String id;
+
+ /**
+ * 浠櫒浠g爜
+ */
+ @ExcelProperty(value = "浠櫒浠g爜")
+ private String instrumentCode;
+
+ /**
+ * 浠櫒鍚嶇О
+ */
+ @ExcelProperty(value = "浠櫒鍚嶇О")
+ private String instrumentName;
+
+ /**
+ * 鎺ュ彛鏍囧噯
+ */
+ @ExcelProperty(value = "鎺ュ彛鏍囧噯")
+ private String ifStd;
+
+ /**
+ * 鎺ュ彛鏍囧噯浠g爜
+ */
+ @ExcelProperty(value = "鎺ュ彛鏍囧噯浠g爜")
+ private Long isc;
+
+ /**
+ * 鎵�灞炶溅闂�
+ */
+ @ExcelProperty(value = "鎵�灞炶溅闂�")
+ private String workShop;
+
+ /**
+ * 鍚敤
+ */
+ @ExcelProperty(value = "鍚敤", converter = ExcelDictConvert.class)
+ @ExcelDictFormat(dictType = "sys_yes_no")
+ private Long enable;
+
+ /**
+ * 鍒犻櫎
+ */
+ @ExcelProperty(value = "鍒犻櫎")
+ private Long del;
+
+ /**
+ * 澶囨敞
+ */
+ @ExcelProperty(value = "澶囨敞")
+ private String instrumentDes;
+
+
+}
--
Gitblit v1.9.3