/** * 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 TaskFeedbackResponse { /** 评价ID */ id?: number; /** 完成记录ID */ completionId?: number; /** 评价结果:EXCELLENT/PASSED/NEEDS_WORK */ result?: string; /** 评价结果文本:优秀/通过/需改进 */ resultText?: string; /** 评分 1-5 */ rating?: number; /** 评语 */ comment?: string; /** 教师ID */ teacherId?: number; /** 教师姓名 */ teacherName?: string; /** 教师头像 */ teacherAvatar?: string; /** 评价时间 */ createdAt?: string; }