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

40 lines
974 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
*/
import type { StudentInfo } from './studentInfo';
import type { TaskFeedbackResponse } from './taskFeedbackResponse';
/**
*
*/
export interface TaskCompletionDetailResponse {
/** 完成记录ID */
id?: number;
/** 任务ID */
taskId?: number;
/** 任务标题 */
taskTitle?: string;
student?: StudentInfo;
/** 状态PENDING/SUBMITTED/REVIEWED */
status?: string;
/** 状态文本:待完成/已提交/已评价 */
statusText?: string;
/** 照片URL数组 */
photos?: string[];
/** 视频URL */
videoUrl?: string;
/** 语音URL */
audioUrl?: string;
/** 完成内容/阅读心得 */
content?: string;
/** 提交时间 */
submittedAt?: string;
/** 评价时间 */
reviewedAt?: string;
feedback?: TaskFeedbackResponse;
}