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>;
}
