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

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