20 lines
378 B
TypeScript
20 lines
378 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 ActiveTeacherStatsResponse {
|
||
|
|
/** 教师 ID */
|
||
|
|
id?: string;
|
||
|
|
/** 教师姓名 */
|
||
|
|
name?: string;
|
||
|
|
/** 课时数 */
|
||
|
|
lessonCount?: number;
|
||
|
|
}
|