import { IParam } from '../../common'; import { ICtrlModel } from './i-ctrl-model'; /** * 数据关系分页栏部件模型接口 * * @export * @interface IDrbarModel * @extends {ICtrlModel} */ export interface IDrtabModel extends ICtrlModel { /** * @description 分页数据 * @type {IParam[]} * @memberof IDrtabModel */ pages: IParam[]; }