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 TenantCreateRequest {
|
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
|
|
|
code: string;
|
2026-03-16 10:45:15 +08:00
|
|
|
/** 联系人 */
|
2026-03-13 13:48:28 +08:00
|
|
|
contactName?: string;
|
2026-03-16 10:45:15 +08:00
|
|
|
/** 联系电话 */
|
2026-03-13 13:48:28 +08:00
|
|
|
contactPhone?: string;
|
2026-03-16 10:45:15 +08:00
|
|
|
/** 联系邮箱 */
|
2026-03-13 13:48:28 +08:00
|
|
|
contactEmail?: string;
|
2026-03-16 10:45:15 +08:00
|
|
|
/** 地址 */
|
2026-03-13 13:48:28 +08:00
|
|
|
address?: string;
|
|
|
|
|
/** Logo URL */
|
|
|
|
|
logoUrl?: string;
|
2026-03-16 10:45:15 +08:00
|
|
|
/** 过期时间 */
|
2026-03-13 13:48:28 +08:00
|
|
|
expireAt?: string;
|
2026-03-16 10:45:15 +08:00
|
|
|
/** 最大学生数 */
|
2026-03-13 13:48:28 +08:00
|
|
|
maxStudents?: number;
|
2026-03-16 10:45:15 +08:00
|
|
|
/** 最大教师数 */
|
2026-03-13 13:48:28 +08:00
|
|
|
maxTeachers?: number;
|
|
|
|
|
}
|