47 lines
945 B
TypeScript
47 lines
945 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
|
||
|
|
*/
|
||
|
|
import type { LocalTime } from './localTime';
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 课表计划响应
|
||
|
|
*/
|
||
|
|
export interface SchedulePlanResponse {
|
||
|
|
/** 课表 ID */
|
||
|
|
id?: string;
|
||
|
|
/** 课表名称 */
|
||
|
|
name?: string;
|
||
|
|
/** 班级 ID */
|
||
|
|
classId?: string;
|
||
|
|
/** 班级名称 */
|
||
|
|
className?: string;
|
||
|
|
/** 课程 ID */
|
||
|
|
courseId?: string;
|
||
|
|
/** 课程名称 */
|
||
|
|
courseName?: string;
|
||
|
|
/** 教师 ID */
|
||
|
|
teacherId?: string;
|
||
|
|
/** 教师姓名 */
|
||
|
|
teacherName?: string;
|
||
|
|
/** 星期几 (1-7) */
|
||
|
|
dayOfWeek?: number;
|
||
|
|
/** 节次 */
|
||
|
|
period?: number;
|
||
|
|
startTime?: LocalTime;
|
||
|
|
endTime?: LocalTime;
|
||
|
|
/** 开始日期 */
|
||
|
|
startDate?: string;
|
||
|
|
/** 结束日期 */
|
||
|
|
endDate?: string;
|
||
|
|
/** 地点 */
|
||
|
|
location?: string;
|
||
|
|
/** 备注 */
|
||
|
|
note?: string;
|
||
|
|
/** 状态 */
|
||
|
|
status?: string;
|
||
|
|
}
|