9 lines
163 B
TypeScript
9 lines
163 B
TypeScript
/** 通用分页模型 */
|
|
declare interface Page<T = any[]> {
|
|
code: number
|
|
/** 分页数据 */
|
|
rows: T
|
|
/** 总页数 */
|
|
total: number
|
|
message: string
|
|
} |