import { PageProps } from "./PageProps"; /** * 架构属性基类 */ export interface SchemaProps extends PageProps { /** * 模块 */ module: any; /** * 架构,含前端规格 */ schema: any[]; /** * 数据表 */ table: any; /** * 布局 */ layout: any; /** * 下一个路由操作 */ next: any; /** * 数据集 */ set: any; }