2026-03-16 19:35:31 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 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 CoursePackageCourseItem {
|
|
|
|
|
|
/** 课程 ID */
|
|
|
|
|
|
id?: number;
|
|
|
|
|
|
/** 课程名称 */
|
|
|
|
|
|
name?: string;
|
|
|
|
|
|
/** 适用年级 */
|
|
|
|
|
|
gradeLevel?: string;
|
|
|
|
|
|
/** 排序号 */
|
|
|
|
|
|
sortOrder?: number;
|
2026-03-18 14:46:32 +08:00
|
|
|
|
/** 排课计划参考数据(JSON) */
|
|
|
|
|
|
scheduleRefData?: string;
|
|
|
|
|
|
/** 课程类型 */
|
|
|
|
|
|
lessonType?: string;
|
2026-03-16 19:35:31 +08:00
|
|
|
|
}
|