This commit is contained in:
2025-09-08 16:38:03 +08:00
parent 1333ef55b2
commit 2ae9f8ac83

View File

@@ -0,0 +1,18 @@
export interface SQTreeNode {
id: string | number
pid: string | number
name: string
leaf?: boolean
weight: number
type: string
node_type: string
children?: SQTreeNode[]
}
export interface SQTreeRequest {
treeFlag?: string
leaf?: boolean
weight?: number
sortType?: string
resourceTable?: string
}