mirror of
https://github.com/shuguangnet/Code-Master.git
synced 2025-01-23 16:08:45 +08:00
21 lines
505 B
TypeScript
21 lines
505 B
TypeScript
/* generated using openapi-typescript-codegen -- do no edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
|
|
import type { OrderItem } from './OrderItem';
|
|
import type { Question } from './Question';
|
|
|
|
export type Page_Question_ = {
|
|
countId?: string;
|
|
current?: number;
|
|
maxLimit?: number;
|
|
optimizeCountSql?: boolean;
|
|
orders?: Array<OrderItem>;
|
|
pages?: number;
|
|
records?: Array<Question>;
|
|
searchCount?: boolean;
|
|
size?: number;
|
|
total?: number;
|
|
};
|