18 lines
335 B
TypeScript
18 lines
335 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 CourseDistributionResponse {
|
||
|
|
/** 课程名称 */
|
||
|
|
name?: string;
|
||
|
|
/** 课时数量 */
|
||
|
|
value?: number;
|
||
|
|
}
|