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.shift.api.d.ts |  128 ++++++++++++++++++++----------------------
 1 files changed, 61 insertions(+), 67 deletions(-)

diff --git a/ruoyi-plus-soybean/src/typings/api/md.shift.api.d.ts b/ruoyi-plus-soybean/src/typings/api/md.shift.api.d.ts
old mode 100644
new mode 100755
index a5f6ce0..f6069b2
--- a/ruoyi-plus-soybean/src/typings/api/md.shift.api.d.ts
+++ b/ruoyi-plus-soybean/src/typings/api/md.shift.api.d.ts
@@ -4,74 +4,68 @@
  * All backend api type
  */
 declare namespace Api {
-    /**
-     * namespace Md
-     *
-     * backend api module: "Md"
-     */
-    namespace Md {
-        /** shift */
-        type Shift = Common.CommonRecord<{
-            /** id */
-                id: CommonType.IdType;
-            /** 杞﹂棿澶栭敭 */
-                wsId: CommonType.IdType;
-            /** 缂栫爜 */
-                code: string;
-            /** 鍚嶇О */
-                name: string;
-            /** 鐝寮�濮嬫椂闂� */
-                stim: string;
-            /** 鐝缁撴潫鏃堕棿 */
-                etim: string;
-            /** 鎺掑簭 */
-                seq: number;
-            /** 鍚敤 */
-                enable: number;
-            /** 鍒犻櫎 */
-                del: number;
-            /** 鍒涘缓鐢ㄦ埛 */
-                createUserName: string;
-            /** 鍒涘缓鏃堕棿 */
-                createUserTime: string;
-            /** 鏇存柊鐢ㄦ埛 */
-                updateUserName: string;
-            /** 鏇存柊鏃堕棿 */
-                updateUserTime: string;
-        }>;
+  /**
+   * namespace Md
+   *
+   * backend api module: "Md"
+   */
+  namespace Md {
+    /** shift */
+    type Shift = Common.CommonRecord<{
+      /** id */
+      id: CommonType.IdType;
+      /** 杞﹂棿澶栭敭 */
+      wsId: CommonType.IdType;
+      /** 缂栫爜 */
+      code: string;
+      /** 鍚嶇О */
+      name: string;
+      /** 鐝寮�濮嬫椂闂� */
+      stim: string;
+      /** 鐝缁撴潫鏃堕棿 */
+      etim: string;
+      /** 鎺掑簭 */
+      seq: number;
+      /** 鍚敤 */
+      enable: number;
+      /** 鍒犻櫎 */
+      del: number;
+      /** 鍒涘缓鐢ㄦ埛 */
+      createUserName: string;
+      /** 鍒涘缓鏃堕棿 */
+      createUserTime: string;
+      /** 鏇存柊鐢ㄦ埛 */
+      updateUserName: string;
+      /** 鏇存柊鏃堕棿 */
+      updateUserTime: string;
+    }>;
 
-        /** shift search params */
-        type ShiftSearchParams = CommonType.RecordNullable<
-            Pick<
-                Api.Md.Shift,
-                        | 'code'
-                        | 'name'
-                        | 'enable'
-            > &
-            Api.Common.CommonSearchParams
-        >;
+    /** shift search params */
+    type ShiftSearchParams = CommonType.RecordNullable<
+      Pick<Api.Md.Shift, 'code' | 'name' | 'enable'> & Api.Common.CommonSearchParams
+    >;
 
-        /** shift operate params */
-        type ShiftOperateParams = CommonType.RecordNullable<
-            Pick<
-                Api.Md.Shift,
-                        | 'id'
-                        | 'wsId'
-                        | 'code'
-                        | 'name'
-                        | 'stim'
-                        | 'etim'
-                        | 'seq'
-                        | 'enable'
-                        | 'del'
-                        | 'createUserName'
-                        | 'createUserTime'
-                        | 'updateUserName'
-                        | 'updateUserTime'
-            >
-        >;
+    /** shift operate params */
+    type ShiftOperateParams = CommonType.RecordNullable<
+      Pick<
+        Api.Md.Shift,
+        | 'id'
+        | 'wsId'
+        | 'code'
+        | 'name'
+        | 'stim'
+        | 'etim'
+        | 'seq'
+        | 'enable'
+        | 'del'
+        | 'createUserName'
+        | 'createUserTime'
+        | 'updateUserName'
+        | 'updateUserTime'
+      >
+    >;
 
-        /** shift list */
-        type ShiftList = Api.Common.PaginatingQueryRecord<Shift>;
-    }
+    /** shift list */
+    type ShiftList = Api.Common.PaginatingQueryRecord<Shift>;
+  }
 }

--
Gitblit v1.9.3