zhouwx
2024-12-04 ddc85c375af71d0891708d623a94691a88847caf
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
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 | null,
        gasCategoryId: string| null,
        orientation: string,
        concentration: number | string,
        multiplication: number | string,
    };
    gasFormRules:{},
    positionList: Array<any>;
}