34 lines
863 B
TypeScript
34 lines
863 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
|
|||
|
|
*/
|
|||
|
|
import type { TaskFeedbackResponse } from './taskFeedbackResponse';
|
|||
|
|
import type { TaskInfo } from './taskInfo';
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 家长端任务列表响应(含完成信息)
|
|||
|
|
*/
|
|||
|
|
export interface TaskWithCompletionResponse {
|
|||
|
|
/** 任务ID */
|
|||
|
|
id?: number;
|
|||
|
|
/** 完成状态:PENDING-待提交/SUBMITTED-已提交/REVIEWED-已评价 */
|
|||
|
|
status?: string;
|
|||
|
|
/** 提交时间 */
|
|||
|
|
submittedAt?: string;
|
|||
|
|
/** 评价时间 */
|
|||
|
|
reviewedAt?: string;
|
|||
|
|
/** 照片URL列表 */
|
|||
|
|
photos?: string[];
|
|||
|
|
/** 视频URL */
|
|||
|
|
videoUrl?: string;
|
|||
|
|
/** 语音URL */
|
|||
|
|
audioUrl?: string;
|
|||
|
|
/** 阅读心得/完成内容 */
|
|||
|
|
content?: string;
|
|||
|
|
teacherFeedback?: TaskFeedbackResponse;
|
|||
|
|
task?: TaskInfo;
|
|||
|
|
}
|