32 lines
572 B
TypeScript
32 lines
572 B
TypeScript
|
|
/**
|
|||
|
|
* Generated by orval v8.5.3 🍺
|
|||
|
|
* Do not edit manually.
|
|||
|
|
* Reading Platform API
|
|||
|
|
* Reading Platform Backend Service API Documentation
|
|||
|
|
* OpenAPI spec version: 1.0.0
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 任务提交请求
|
|||
|
|
*/
|
|||
|
|
export interface TaskSubmitRequest {
|
|||
|
|
/** 学生ID */
|
|||
|
|
studentId?: number;
|
|||
|
|
/**
|
|||
|
|
* 照片URL数组(最多9张)
|
|||
|
|
* @minItems 0
|
|||
|
|
* @maxItems 9
|
|||
|
|
*/
|
|||
|
|
photos?: string[];
|
|||
|
|
/** 视频URL */
|
|||
|
|
videoUrl?: string;
|
|||
|
|
/** 语音URL */
|
|||
|
|
audioUrl?: string;
|
|||
|
|
/**
|
|||
|
|
* 阅读心得/完成内容
|
|||
|
|
* @minLength 0
|
|||
|
|
* @maxLength 1000
|
|||
|
|
*/
|
|||
|
|
content?: string;
|
|||
|
|
}
|