kindergarten_java/reading-platform-frontend/src/api/generated/model/childProfileResponse.ts

32 lines
680 B
TypeScript
Raw Normal View History

/**
* 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
*/
import type { ClassInfo } from './classInfo';
import type { StatsInfo } from './statsInfo';
/**
*
*/
export interface ChildProfileResponse {
/** 学生ID */
id?: number;
/** 姓名 */
name?: string;
/** 性别 */
gender?: string;
/** 出生日期 */
birthDate?: string;
/** 与家长关系 */
relationship?: string;
/** 阅读次数 */
readingCount?: number;
/** 上课次数 */
lessonCount?: number;
stats?: StatsInfo;
class?: ClassInfo;
}