From 380aa1049c82037260acc039aef22d3553861d0a Mon Sep 17 00:00:00 2001
From: zs <zhousong@weben-smart.com>
Date: 周二, 06 5月 2025 09:20:25 +0800
Subject: [PATCH] 条件查询
---
PipeLineLems/web/src/libs/Store/Store.d.ts | 25 +++++++++++++++++++++++++
1 files changed, 25 insertions(+), 0 deletions(-)
diff --git a/PipeLineLems/web/src/libs/Store/Store.d.ts b/PipeLineLems/web/src/libs/Store/Store.d.ts
index 6e47487..d419ae1 100644
--- a/PipeLineLems/web/src/libs/Store/Store.d.ts
+++ b/PipeLineLems/web/src/libs/Store/Store.d.ts
@@ -9,3 +9,28 @@
list?: EnumListItemType[]
desc?: string
}
+export interface FeatureType {
+ depth: number
+ description: string
+ dispalyName: string
+ name: string
+ parentName: string
+ provider: {
+ name: string
+ key: string
+ }
+ value: string | number | boolean
+ valueType: {
+ name: string
+ properties: Record<string, any>
+ validator: {
+ name: string
+ properties: Record<string, any>
+ }
+ }
+}
+export interface FeatureItemType {
+ dispalyName?: string
+ features: FeatureType[]
+ name: string
+}
--
Gitblit v1.9.3