Files
xingrin/frontend/types/common.types.ts
2025-12-12 18:04:57 +08:00

20 lines
456 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// 通用类型定义
// 分页信息接口
export interface PaginationInfo {
total: number
page: number
pageSize: number
totalPages: number
}
// 分页和排序参数接口
export interface PaginationParams {
page?: number
pageSize?: number
sortBy?: string // 排序字段id, name, created_at, updated_at使用下划线命名
sortOrder?: "asc" | "desc" // 排序方向asc, desc
search?: string // 搜索关键词
}