kindergarten_java/reading-platform-frontend/src/api/generated/model/coursePackageCourseItem.ts
Claude Opus 4.6 279fa79b56 merge: 合并远程更新并解决冲突
- 合并学校课程管理搜索与年级筛选功能
- 修复教学资源区域间距问题
- 删除已忽略的自动生成文件
- 新增排课弹窗优化(移除课程选择,自动选择第一门课程)
- 新增 lessonType 从 schedule_ref_data 解析功能
- 修复前端代理配置(端口 8480)
2026-03-18 14:46:32 +08:00

26 lines
534 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* 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 CoursePackageCourseItem {
/** 课程 ID */
id?: number;
/** 课程名称 */
name?: string;
/** 适用年级 */
gradeLevel?: string;
/** 排序号 */
sortOrder?: number;
/** 排课计划参考数据JSON */
scheduleRefData?: string;
/** 课程类型 */
lessonType?: string;
}