// 分页查询通用参数
export const DEFAULT_PAGE = { current: 1, size: 10 }
// 重置分页
export function resetPage() {
return { ...DEFAULT_PAGE }
}
// 关键字搜索防抖 hook 占位
export const SEARCH_DEBOUNCE_MS = 300