/** * 分页数据行属性 */ export interface PagingRowProps { /** * 数据表 */ table: any; /** * 跳转操作 */ next: any; /** * 数据集 */ set: any; /** * 数据行 */ row: any; }