马宇豪
2023-04-12 8d14fec97344df49d58db115852c03b466482bc6
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
42
43
44
45
46
declare interface ReportStateType {
 
}
 
declare interface ReportDialogType {
    title: string
    disabled: boolean
    reportDialogVisible: boolean
    reportForm: object
    reportFormRules: object
    allPersonList: Array<AllPersonListType>
    systemPersonList: Array<AllPersonListType>
    allRoomList: Array<RoomType>
}
 
declare interface DangerSourceType {
    disabled: boolean
    dangerList: Array<DangerListType>
    classifyList: Array<Type>
    wasteStorageList: Array<Type>
}
 
 
declare interface DangerListType {
    dangerFactor: string
    feature: string
    amount: null | number
    info: string
}
 
declare interface AssessApplyDialogStateType {
    title: string,
    assessApplyDialogVisible: boolean,
    id: number | null,
    liabilityUserId: number | null,
    riskUnitData: Array<any>,
    riskList: Array<type>,
    basicUnitList: Array<UnitType>
    allPersonList: Array<AllPersonListType>
    allRiskTypeList: Array<RiskType>
}
 
declare interface type {
    id: number,
    name: string
}