You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
617 B
27 lines
617 B
/** |
|
* @program: kicc-ui |
|
* @description: 多租户实体类 |
|
* 类型定义 |
|
* @author: wangxiang4 |
|
* @create: 2022/4/8 |
|
*/ |
|
import type { R } from '/#/axios'; |
|
import type { CommonEntity, Page } from '/@/api/common/data/entity'; |
|
|
|
/** 多租户查询参数 */ |
|
export type TenantParams = Page & Tenant; |
|
|
|
/** 多租户对象 */ |
|
export interface Tenant extends CommonEntity { |
|
id: string; |
|
name: string; |
|
code: string; |
|
tenantStartTime: string; |
|
tenantEndTime: string; |
|
enabledIdentityProvider: string; |
|
status: string; |
|
[key: string]: any; |
|
} |
|
|
|
/** 多租户响应对象 */ |
|
export type TenantResult = R<Tenant[]>;
|
|
|