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

56 lines
1.1 KiB
TypeScript
Raw Normal View History

/**
* 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;
}