import { IParam } from '../../common'; import { IMDCtrlModel } from './i-md-ctrl-model'; /** * 表格部件模型接口 * * @export * @interface IGridModel * @extends {ICtrlModel} */ export interface IGridModel extends IMDCtrlModel { /** * 聚合模式 * * @type {string} * @memberof IGridModel */ aggMode: string; /** * 表格列 * * @type {IParam[]} * @memberof IGridModel */ columns: IParam[]; }