kindergarten_java/reading-platform-frontend/src/api/generated/model/taskSubmitRequest.ts

32 lines
572 B
TypeScript
Raw Normal View History

/**
* 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;
}