2026-03-13 13:48:28 +08:00
|
|
|
/**
|
|
|
|
|
* 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
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
2026-03-16 10:45:15 +08:00
|
|
|
* 班级更新请求
|
2026-03-13 13:48:28 +08:00
|
|
|
*/
|
|
|
|
|
export interface ClassUpdateRequest {
|
2026-03-16 10:45:15 +08:00
|
|
|
/** 班级名称 */
|
2026-03-13 13:48:28 +08:00
|
|
|
name?: string;
|
2026-03-16 10:45:15 +08:00
|
|
|
/** 年级 */
|
2026-03-13 13:48:28 +08:00
|
|
|
grade?: string;
|
2026-03-16 10:45:15 +08:00
|
|
|
/** 描述 */
|
2026-03-13 13:48:28 +08:00
|
|
|
description?: string;
|
2026-03-16 10:45:15 +08:00
|
|
|
/** 容量 */
|
2026-03-13 13:48:28 +08:00
|
|
|
capacity?: number;
|
2026-03-16 10:45:15 +08:00
|
|
|
/** 状态 */
|
2026-03-13 13:48:28 +08:00
|
|
|
status?: string;
|
|
|
|
|
}
|