20 lines
423 B
Plaintext
20 lines
423 B
Plaintext
import { FormSchema } from '@/components/Form/index';
|
|
export const schemas: FormSchema[] = [
|
|
{
|
|
name: 'tableName',
|
|
component: 'Input',
|
|
label: '数据表名称',
|
|
componentProps: {
|
|
placeholder: '请输入数据表名称',
|
|
},
|
|
},
|
|
{
|
|
name: 'tableComment',
|
|
component: 'Input',
|
|
label: '数据表描述',
|
|
componentProps: {
|
|
placeholder: '请输入数据表描述',
|
|
},
|
|
},
|
|
];
|