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-plus-soybean/src/typings/api/md.instrument.api.d.ts | 65 ++++++++++++++++++++++++++++++++
1 files changed, 65 insertions(+), 0 deletions(-)
diff --git a/ruoyi-plus-soybean/src/typings/api/md.instrument.api.d.ts b/ruoyi-plus-soybean/src/typings/api/md.instrument.api.d.ts
new file mode 100644
index 0000000..f913592
--- /dev/null
+++ b/ruoyi-plus-soybean/src/typings/api/md.instrument.api.d.ts
@@ -0,0 +1,65 @@
+/**
+ * Namespace Api
+ *
+ * All backend api type
+ */
+declare namespace Api {
+ /**
+ * namespace Md
+ *
+ * backend api module: "Md"
+ */
+ namespace Md {
+ /** instrument */
+ type Instrument = Common.CommonRecord<{
+ /** 缂栫爜 */
+ id: CommonType.IdType;
+ /** 浠櫒浠g爜 */
+ instrumentCode: string;
+ /** 浠櫒鍚嶇О */
+ instrumentName: string;
+ /** 鎺ュ彛鏍囧噯 */
+ ifStd: string;
+ /** 鎺ュ彛鏍囧噯浠g爜 */
+ isc: number;
+ /** 鎵�灞炶溅闂� */
+ workShop: string;
+ /** 鍚敤 */
+ enable: number;
+ /** 鍒犻櫎 */
+ del: number;
+ /** 澶囨敞 */
+ instrumentDes: string;
+ }>;
+
+ /** instrument search params */
+ type InstrumentSearchParams = CommonType.RecordNullable<
+ Pick<
+ Api.Md.Instrument,
+ | 'instrumentCode'
+ | 'instrumentName'
+ | 'enable'
+ > &
+ Api.Common.CommonSearchParams
+ >;
+
+ /** instrument operate params */
+ type InstrumentOperateParams = CommonType.RecordNullable<
+ Pick<
+ Api.Md.Instrument,
+ | 'id'
+ | 'instrumentCode'
+ | 'instrumentName'
+ | 'ifStd'
+ | 'isc'
+ | 'workShop'
+ | 'enable'
+ | 'del'
+ | 'instrumentDes'
+ >
+ >;
+
+ /** instrument list */
+ type InstrumentList = Api.Common.PaginatingQueryRecord<Instrument>;
+ }
+}
--
Gitblit v1.9.3