32 lines
576 B
TypeScript
32 lines
576 B
TypeScript
|
|
/**
|
||
|
|
* 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
|
||
|
|
*/
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 班级响应
|
||
|
|
*/
|
||
|
|
export interface ClassResponse {
|
||
|
|
/** ID */
|
||
|
|
id?: number;
|
||
|
|
/** 租户 ID */
|
||
|
|
tenantId?: number;
|
||
|
|
/** 班级名称 */
|
||
|
|
name?: string;
|
||
|
|
/** 年级 */
|
||
|
|
grade?: string;
|
||
|
|
/** 描述 */
|
||
|
|
description?: string;
|
||
|
|
/** 容量 */
|
||
|
|
capacity?: number;
|
||
|
|
/** 状态 */
|
||
|
|
status?: string;
|
||
|
|
/** 创建时间 */
|
||
|
|
createdAt?: string;
|
||
|
|
/** 更新时间 */
|
||
|
|
updatedAt?: string;
|
||
|
|
}
|