export interface DictItem { label: string; code: string; id: string; value: any; name: string; extText?: string; typeCode?: string; disabled?: boolean; icon?: string; } export interface CacheDictType { data: { [key: string]: DictItem[] }; updateDictMap: (key: any, valuse: DictItem[]) => void; }