zhouwenxuan
2023-08-30 15669173497dce16b5d0f17bf4bef36c0d87115c
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
export interface TableDataRow {
    id: string;
    gasName: string;
    gasMolecularFormula: string;
    gasThreshold: string;
    gasUnit: string;
}
export interface TableDataState {
    tableData: {
        data: Array<TableDataRow>
        total: number;
        loading: boolean;
        listQuery: {
            pageIndex: number;
            pageSize: number;
            searchParams:{
                name: string
            }
        };
    }
}
 
export interface GasState {
    disabled: boolean;
    title: string;
    isShowUserDialog: boolean;
    gasForm: {
        gasName: string;
        gasMolecularFormula: string;
        gasThreshold: string;
        gasUnit: string;
    };
    gasFormRules:{},
}