/** * 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 TenantCreateRequest { /** 租户名称 */ name: string; /** 租户编码/登录账号 */ code: string; /** 初始密码(留空默认 123456) */ password?: string; /** 联系人 */ contactName?: string; /** 联系电话 */ contactPhone?: string; /** 联系邮箱 */ contactEmail?: string; /** 地址 */ address?: string; /** Logo URL */ logoUrl?: string; /** 教师配额 */ teacherQuota?: number; /** 学生配额 */ studentQuota?: number; /** 开始日期 */ startDate?: string; /** 结束日期 */ expireDate?: string; /** 课程套餐 ID 列表(可选,支持多选) */ collectionIds?: number[]; }