26 lines
494 B
TypeScript
26 lines
494 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
|
||
|
|
*/
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 课时简单信息响应
|
||
|
|
*/
|
||
|
|
export interface LessonSimpleResponse {
|
||
|
|
/** 课时 ID */
|
||
|
|
id?: string;
|
||
|
|
/** 课时标题 */
|
||
|
|
title?: string;
|
||
|
|
/** 开始时间 */
|
||
|
|
startTime?: string;
|
||
|
|
/** 结束时间 */
|
||
|
|
endTime?: string;
|
||
|
|
/** 地点 */
|
||
|
|
location?: string;
|
||
|
|
/** 课时状态 */
|
||
|
|
status?: string;
|
||
|
|
}
|