/* * @author gs * @date 2020/09/23 14:05 */ export enum CustomerTableColumnType { Id = 'Id', Text = 'Text', Password = 'Password', Number = 'Number', File = 'File', Date = 'Date' } export type ProjectDatabaseTableColumn = { name: string; type: CustomerTableColumnType; displayable: boolean; fixed: boolean; }; export enum KitType { Icon = 'icon', Image = 'image', Font = 'font' } export type ProjectDatabaseTableDefinition = { name: string; displayable: boolean; columns: ProjectDatabaseTableColumn[]; }; export type LocalizationContents = { zhCN?: string; en?: string; };