23 lines
526 B
TypeScript
23 lines
526 B
TypeScript
|
|
/**
|
||
|
|
* Generated by orval v7.13.2 🍺
|
||
|
|
* Do not edit manually.
|
||
|
|
* Reading Platform API
|
||
|
|
* Reading Platform Backend Service API Documentation
|
||
|
|
* OpenAPI spec version: 1.0.0
|
||
|
|
*/
|
||
|
|
import type { TaskCompletionInfoResponse } from './taskCompletionInfoResponse';
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 分页响应
|
||
|
|
*/
|
||
|
|
export interface CommonPageResponseTaskCompletionInfoResponse {
|
||
|
|
/** 数据列表 */
|
||
|
|
items?: TaskCompletionInfoResponse[];
|
||
|
|
/** 总数 */
|
||
|
|
total?: number;
|
||
|
|
/** 当前页码 */
|
||
|
|
page?: number;
|
||
|
|
/** 每页大小 */
|
||
|
|
pageSize?: number;
|
||
|
|
}
|