28 lines
549 B
TypeScript
28 lines
549 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 DayScheduleItem {
|
||
|
|
/** 排课 ID */
|
||
|
|
id?: number;
|
||
|
|
/** 班级名称 */
|
||
|
|
className?: string;
|
||
|
|
/** 课程包名称 */
|
||
|
|
coursePackageName?: string;
|
||
|
|
/** 课程类型名称 */
|
||
|
|
lessonTypeName?: string;
|
||
|
|
/** 教师名称 */
|
||
|
|
teacherName?: string;
|
||
|
|
/** 时间段 */
|
||
|
|
scheduledTime?: string;
|
||
|
|
/** 状态 */
|
||
|
|
status?: string;
|
||
|
|
}
|