feat: 优化
This commit is contained in:
31
src/api/schemas/$VideoDataPaginationRequest.ts
Normal file
31
src/api/schemas/$VideoDataPaginationRequest.ts
Normal file
@@ -0,0 +1,31 @@
|
||||
/* generated using openapi-typescript-codegen -- do no edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export const $VideoDataPaginationRequest = {
|
||||
properties: {
|
||||
page: {
|
||||
type: 'number',
|
||||
description: `页码,从1开始`,
|
||||
minimum: 1,
|
||||
},
|
||||
page_size: {
|
||||
type: 'number',
|
||||
description: `每页数量,最大100`,
|
||||
maximum: 100,
|
||||
minimum: 1,
|
||||
},
|
||||
task_id: {
|
||||
type: 'string',
|
||||
description: `任务ID筛选(可选)`,
|
||||
},
|
||||
img_status: {
|
||||
type: 'string',
|
||||
description: `图片状态筛选(可选)`,
|
||||
},
|
||||
video_status: {
|
||||
type: 'string',
|
||||
description: `视频状态筛选(可选)`,
|
||||
},
|
||||
},
|
||||
} as const;
|
||||
Reference in New Issue
Block a user