export interface IListQuery { keywords: string tenantName: string offset: number limit: number } export interface IList { id: string // 主键 tenantCode: string // 租户代码 tenantName: string // 租户名称 linkPerson: string // 联系人 tel: string // 电话 } export interface IForm { id: string // 主键 tenantCode: string // 租户代码 tenantName: string // 租户名称 linkPerson: string // 联系人 tel: string // 电话 }