字典缓存

This commit is contained in:
仲么了
2023-12-28 11:27:03 +08:00
parent afeadbe26a
commit c1b08dabd4
7 changed files with 102 additions and 20 deletions

View File

@@ -41,5 +41,18 @@ export interface AdminInfo {
last_login_time: string
token: string
refresh_token: string
super:boolean
super: boolean
}
export interface DictData {
basic: BasicDictData[]
}
export interface BasicDictData {
name: string
id: string
code: string
value: null
sort: number | null
children?: BasicDictData[]
}