Interface DBColumn

interface DBColumn {
    comment?: string;
    dbType?: string;
    label?: string;
    name: string;
    nullable?: boolean;
    position?: number;
    type: string;
}

Properties

comment?: string

应该等同于 label

dbType?: string
label?: string
name: string
nullable?: boolean
position?: number
type: string

Generated using TypeDoc