44 lines
951 B
TypeScript
44 lines
951 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 LessonFeedbackResponse {
|
||
|
|
/** ID */
|
||
|
|
id?: number;
|
||
|
|
/** 课程 ID */
|
||
|
|
lessonId?: number;
|
||
|
|
/** 教师 ID */
|
||
|
|
teacherId?: number;
|
||
|
|
/** 教师姓名 */
|
||
|
|
teacherName?: string;
|
||
|
|
/** 反馈内容 */
|
||
|
|
content?: string;
|
||
|
|
/** 评分 */
|
||
|
|
rating?: number;
|
||
|
|
/** 教学设计评分 (1-5) */
|
||
|
|
designQuality?: number;
|
||
|
|
/** 学生参与度评分 (1-5) */
|
||
|
|
participation?: number;
|
||
|
|
/** 目标达成度评分 (1-5) */
|
||
|
|
goalAchievement?: number;
|
||
|
|
/** 各步骤反馈 (JSON 数组) */
|
||
|
|
stepFeedbacks?: string;
|
||
|
|
/** 优点 */
|
||
|
|
pros?: string;
|
||
|
|
/** 建议 */
|
||
|
|
suggestions?: string;
|
||
|
|
/** 已完成的活动 */
|
||
|
|
activitiesDone?: string;
|
||
|
|
/** 创建时间 */
|
||
|
|
createdAt?: string;
|
||
|
|
/** 更新时间 */
|
||
|
|
updatedAt?: string;
|
||
|
|
}
|