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.
32 lines
560 B
32 lines
560 B
import type { PageParam } from '@/api';
|
|
import { Company } from "@/api/system/company/model";
|
|
|
|
/**
|
|
* 租户
|
|
*/
|
|
export interface Tenant {
|
|
// 租户id
|
|
tenantId?: number;
|
|
// 租户名称
|
|
tenantName?: string;
|
|
// 客户ID
|
|
customerId?: string;
|
|
// 备注
|
|
comments?: string;
|
|
// 创建时间
|
|
createTime?: string;
|
|
// 状态
|
|
status?: string;
|
|
// 企业信息
|
|
company?: Company;
|
|
// 配置信息
|
|
config?: any;
|
|
}
|
|
|
|
/**
|
|
* 租户搜索条件
|
|
*/
|
|
export interface TenantParam extends PageParam {
|
|
tenantName?: string;
|
|
customerId?: number;
|
|
}
|