Your Name
2023-02-17 70da1652e00de66b54e9651639c1bf6dda88b357
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
declare interface RoomStateType {
    roomData: Array<RoomType>
    searchQuery: {
        pageIndex: number,
        pageSize: number,
        siteName: string,
        floor: string,
        room: string,
    }
    total: number
    specialDeviceList: Array<Type>,
    deviceUnitList: Array<Type>
}
 
declare interface RoomType {
    id?: number | null,
    siteName: string,
    floor: string,
    room: string,
}
 
declare interface Type {
    id: number,
    name: string,
}
 
declare interface RoomDialogType {
    title: string,
    roomDialogVisible: boolean,
    roomForm: {
        id?: number | null,
        siteName: string,
        floor: string,
        room: string,
    },
    roomFormRules: {
 
    },
    specialDeviceList: Array<Type>,
    deviceUnitList: Array<Type>
}