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

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