20 lines
365 B
TypeScript
20 lines
365 B
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 LessonSimpleInfo {
|
||
|
|
/** 课程 ID */
|
||
|
|
id?: string;
|
||
|
|
/** 课程状态 */
|
||
|
|
status?: string;
|
||
|
|
/** 班级名称 */
|
||
|
|
className?: string;
|
||
|
|
}
|