/** 通用分页模型 */ declare interface Page { code: number /** 分页数据 */ rows: T /** 总页数 */ total: number message: string }