mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-12 14:45:42 +08:00
8 lines
212 B
TypeScript
8 lines
212 B
TypeScript
|
|
export interface IPaginationRequestBody {
|
|||
|
|
keywords?: string;
|
|||
|
|
page?: number;
|
|||
|
|
page_size?: number; // name|create|doc_num|create_time|update_time,default:create_time
|
|||
|
|
orderby?: string;
|
|||
|
|
desc?: string;
|
|||
|
|
}
|