/** * Namespace Api * * All backend api type */ declare namespace Api { namespace Dictionary { interface DictionaryItem { Id: number DicKey: string DicValue: string bakValue: string } interface DictionaryUIItem { id: number uI_Key: string uI_Value: string bakValue: string dictionaryID: number } type AddOrUpdateParams = DictionaryItem interface AddOrUpdateDictionaryUITypeParams { id?: number uI_Key: string uI_Value: string bakValue: string dictionaryID: number } interface SearchParams { RoomID: number } } }