马宇豪
2025-05-08 1289c40801a6f0da5ba786fb4a9e8203e3e2620a
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
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: {
        id: string;
        gasName: string;
        gasMolecularFormula: string;
        gasThreshold: string;
        gasUnit: string;
    };
    gasFormRules:{},
}