Newer
Older
smart-metering-front / src / views / system / tenant / tenant_interface.ts
Stephanie on 1 Dec 2022 352 bytes first commit
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
}