Newer
Older
safe_production_front / src / views / system / multiTenant / multiTenant-interface.ts
dutingting on 6 Mar 471 bytes 多租户、jessibucaPro组件
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 // 电话
}