| | |
| | | declare interface SelectRoomType { |
| | | disabled: boolean |
| | | roomList: Array<roomListType>, |
| | | allRoomList: Array<roomListType>, |
| | | allRoomList: Array<allRoomListType>, |
| | | specialDeviceList: Array<stuffType> |
| | | memberList: Array<any> |
| | | typeList: Array<any> |
| | |
| | | } |
| | | |
| | | declare interface roomListType { |
| | | siteId?: null | number, |
| | | siteName?: string, |
| | | floor?: string, |
| | | room?: string, |
| | | fireFacilities?: null | number, |
| | | partitionStatus?: null | number, |
| | | siteType?: string, |
| | | siteId: null | number, |
| | | siteName: string, |
| | | floor: string, |
| | | room: string, |
| | | fireFacilities: null | number, |
| | | partitionStatus: null | number, |
| | | siteType: string, |
| | | } |
| | | |
| | | declare interface allRoomListType { |
| | | id: null | number, |
| | | siteName: string, |
| | | floor: string, |
| | | room: string, |
| | | fireFacilities: null | number, |
| | | partitionStatus: null | number, |
| | | siteType: string, |
| | | } |
| | | |
| | | declare interface stuffType { |