kindergarten_java/reading-platform-frontend/src/api/generated/model/teacherLessonVO.ts

45 lines
893 B
TypeScript
Raw Normal View History

/**
* 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
*/
import type { LocalTime } from './localTime';
/**
*
*/
export interface TeacherLessonVO {
/** ID */
id?: number;
/** 租户 ID */
tenantId?: number;
/** 课程 ID */
courseId?: number;
/** 班级 ID */
classId?: number;
/** 课程名称 */
courseName?: string;
/** 班级名称 */
className?: string;
/** 教师 ID */
teacherId?: number;
/** 标题 */
title?: string;
/** 课时日期 */
lessonDate?: string;
startTime?: LocalTime;
endTime?: LocalTime;
/** 地点 */
location?: string;
/** 状态 */
status?: string;
/** 备注 */
notes?: string;
/** 创建时间 */
createdAt?: string;
/** 更新时间 */
updatedAt?: string;
}