2026-03-13 13:48:28 +08:00
|
|
|
/**
|
|
|
|
|
* 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 CourseLessonCreateRequest {
|
|
|
|
|
/** 课程类型 */
|
|
|
|
|
lessonType: string;
|
|
|
|
|
/** 课程名称 */
|
|
|
|
|
name: string;
|
|
|
|
|
/** 课程描述 */
|
|
|
|
|
description?: string;
|
|
|
|
|
/** 时长(分钟) */
|
|
|
|
|
duration?: number;
|
|
|
|
|
/** 视频路径 */
|
|
|
|
|
videoPath?: string;
|
|
|
|
|
/** 视频名称 */
|
|
|
|
|
videoName?: string;
|
2026-03-16 10:45:15 +08:00
|
|
|
/** PPT 路径 */
|
2026-03-13 13:48:28 +08:00
|
|
|
pptPath?: string;
|
2026-03-16 10:45:15 +08:00
|
|
|
/** PPT 名称 */
|
2026-03-13 13:48:28 +08:00
|
|
|
pptName?: string;
|
2026-03-16 10:45:15 +08:00
|
|
|
/** PDF 路径 */
|
2026-03-13 13:48:28 +08:00
|
|
|
pdfPath?: string;
|
2026-03-16 10:45:15 +08:00
|
|
|
/** PDF 名称 */
|
2026-03-13 13:48:28 +08:00
|
|
|
pdfName?: string;
|
|
|
|
|
/** 教学目标 */
|
|
|
|
|
objectives?: string;
|
|
|
|
|
/** 教学准备 */
|
|
|
|
|
preparation?: string;
|
|
|
|
|
/** 教学延伸 */
|
|
|
|
|
extension?: string;
|
|
|
|
|
/** 教学反思 */
|
|
|
|
|
reflection?: string;
|
|
|
|
|
/** 评测数据 */
|
|
|
|
|
assessmentData?: string;
|
|
|
|
|
/** 是否使用模板 */
|
|
|
|
|
useTemplate?: boolean;
|
|
|
|
|
}
|