27 lines
534 B
TypeScript
27 lines
534 B
TypeScript
/**
|
|
* Generated by orval v7.21.0 🍺
|
|
* 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 LessonUpdateRequest {
|
|
/** Lesson title */
|
|
title?: string;
|
|
/** Lesson date */
|
|
lessonDate?: string;
|
|
startTime?: LocalTime;
|
|
endTime?: LocalTime;
|
|
/** Location */
|
|
location?: string;
|
|
/** Status */
|
|
status?: string;
|
|
/** Notes */
|
|
notes?: string;
|
|
}
|