56 lines
1.1 KiB
TypeScript
56 lines
1.1 KiB
TypeScript
|
|
/**
|
||
|
|
* Generated by orval v7.13.2 🍺
|
||
|
|
* Do not edit manually.
|
||
|
|
* Reading Platform API
|
||
|
|
* Reading Platform Backend Service API Documentation
|
||
|
|
* OpenAPI spec version: 1.0.0
|
||
|
|
*/
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 课时反馈
|
||
|
|
*/
|
||
|
|
export interface LessonFeedback {
|
||
|
|
/** ID */
|
||
|
|
readonly id?: string;
|
||
|
|
/** 课时 ID */
|
||
|
|
lessonId?: string;
|
||
|
|
/** 教师 ID */
|
||
|
|
teacherId?: string;
|
||
|
|
/**
|
||
|
|
* 设计质量评分 (1-5)
|
||
|
|
* @minimum 1
|
||
|
|
* @maximum 5
|
||
|
|
*/
|
||
|
|
designQuality?: number;
|
||
|
|
/**
|
||
|
|
* 参与度评分 (1-5)
|
||
|
|
* @minimum 1
|
||
|
|
* @maximum 5
|
||
|
|
*/
|
||
|
|
participation?: number;
|
||
|
|
/**
|
||
|
|
* 目标达成度评分 (1-5)
|
||
|
|
* @minimum 1
|
||
|
|
* @maximum 5
|
||
|
|
*/
|
||
|
|
goalAchievement?: number;
|
||
|
|
/** 环节反馈 JSON */
|
||
|
|
stepFeedbacks?: string;
|
||
|
|
/** 优点 */
|
||
|
|
pros?: string;
|
||
|
|
/** 建议 */
|
||
|
|
suggestions?: string;
|
||
|
|
/** 完成的活动 JSON */
|
||
|
|
activitiesDone?: string;
|
||
|
|
/** 创建人用户名 */
|
||
|
|
readonly createdBy?: string;
|
||
|
|
/** 创建时间 */
|
||
|
|
readonly createdAt?: string;
|
||
|
|
/** 更新时间 */
|
||
|
|
readonly updatedAt?: string;
|
||
|
|
/** 更新人用户名 */
|
||
|
|
readonly updatedBy?: string;
|
||
|
|
/** 是否删除 */
|
||
|
|
readonly deleted?: number;
|
||
|
|
}
|