2026-03-03 11:03:56 +08:00
|
|
|
/**
|
2026-03-10 17:28:31 +08:00
|
|
|
* Generated by orval v7.21.0 🍺
|
2026-03-03 11:03:56 +08:00
|
|
|
* Do not edit manually.
|
|
|
|
|
* Reading Platform API
|
|
|
|
|
* Reading Platform Backend Service API Documentation
|
|
|
|
|
* OpenAPI spec version: 1.0.0
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
2026-03-09 18:04:29 +08:00
|
|
|
* 家长更新请求
|
2026-03-03 11:03:56 +08:00
|
|
|
*/
|
|
|
|
|
export interface ParentUpdateRequest {
|
2026-03-09 18:04:29 +08:00
|
|
|
/** 姓名 */
|
2026-03-03 11:03:56 +08:00
|
|
|
name?: string;
|
2026-03-09 18:04:29 +08:00
|
|
|
/** 电话 */
|
2026-03-03 11:03:56 +08:00
|
|
|
phone?: string;
|
2026-03-09 18:04:29 +08:00
|
|
|
/** 邮箱 */
|
2026-03-03 11:03:56 +08:00
|
|
|
email?: string;
|
2026-03-09 18:04:29 +08:00
|
|
|
/** 头像URL */
|
2026-03-03 11:03:56 +08:00
|
|
|
avatarUrl?: string;
|
2026-03-09 18:04:29 +08:00
|
|
|
/** 性别 */
|
2026-03-03 11:03:56 +08:00
|
|
|
gender?: string;
|
2026-03-09 18:04:29 +08:00
|
|
|
/** 状态 */
|
2026-03-03 11:03:56 +08:00
|
|
|
status?: string;
|
|
|
|
|
}
|