22 lines
417 B
TypeScript
22 lines
417 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 CoursePackageCourseItem {
|
||
|
|
/** 课程 ID */
|
||
|
|
id?: number;
|
||
|
|
/** 课程名称 */
|
||
|
|
name?: string;
|
||
|
|
/** 适用年级 */
|
||
|
|
gradeLevel?: string;
|
||
|
|
/** 排序号 */
|
||
|
|
sortOrder?: number;
|
||
|
|
}
|