1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| // 虽然字段很少 但是抽离出来 后续有扩展字段需求就很方便了
|
| interface FormItemProps {
| /** 角色名称 */
| name: string;
| /** 角色编号 */
| code: string;
| /** 备注 */
| remark: string;
| }
| interface FormProps {
| formInline: FormItemProps;
| }
|
| export type { FormItemProps, FormProps };
|
|