Newer
Older
CorrOLFront / src / views / system / tenant / tenant_interface.ts
tanyue on 5 Mar 2024 352 bytes 20240305 初始提交
export interface IlistQuery {
  tenantName: string
  offset: number
  sort: string
  order: string
}
export interface IdeviceForm {
  id?: string // 主键
  tenantCode: string // 项目编码
  tenantName: string // 项目名称
  linkPerson: string // 联系人
  tel: string // 联系电话
  clearday: string // 清除时间
  deptName?: string
}