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

34 lines
676 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;
/** 联系人 */
contactName?: string;
/** 联系电话 */
contactPhone?: string;
/** 联系邮箱 */
contactEmail?: string;
/** 地址 */
address?: string;
/** Logo URL */
logoUrl?: string;
/** 过期时间 */
expireAt?: string;
/** 最大学生数 */
maxStudents?: number;
/** 最大教师数 */
maxTeachers?: number;
}