26 lines
461 B
TypeScript
26 lines
461 B
TypeScript
/**
|
|
* Generated by orval v7.21.0 🍺
|
|
* Do not edit manually.
|
|
* Reading Platform API
|
|
* Reading Platform Backend Service API Documentation
|
|
* OpenAPI spec version: 1.0.0
|
|
*/
|
|
|
|
/**
|
|
* 家长更新请求
|
|
*/
|
|
export interface ParentUpdateRequest {
|
|
/** 姓名 */
|
|
name?: string;
|
|
/** 电话 */
|
|
phone?: string;
|
|
/** 邮箱 */
|
|
email?: string;
|
|
/** 头像URL */
|
|
avatarUrl?: string;
|
|
/** 性别 */
|
|
gender?: string;
|
|
/** 状态 */
|
|
status?: string;
|
|
}
|