import { SelectProps } from '@alifd/next/types/select'; export interface IColumn { billColumnId?: string; columnIndex?: number; columnName: string; columnKey: string; columnType: 'DateTime' | 'String' | 'Number' | ''; columnLength?: number | null; dateFormat?: ''; decimalLength?: number; canNull: boolean; uniqueFlag: boolean; queryType: 0 | 1 | 2; } export interface ColumnsData { columnType: { dataSource: SelectProps['dataSource']; }; dataFormat: { dataSource: SelectProps['dataSource']; }; queryType: { dataSource: SelectProps['dataSource']; }; } interface IProps { } export default IProps;