Newer
Older
adminAccountabilityFront / src / views / system / label / label.ts
liyaguang on 11 Sep 2023 468 bytes first
// 查询条件
export interface IlistQuery {
  useState: string // 使用情况字典值ID
  offset: number
  limit: number
}

// 标签使用情况
export interface IUseStateList {
  id: string
  name: string
}

// 字典
export interface dictType {
  id: string
  name: string
  value: string
}

export interface ILabelItem {
  rfid: string
  state: string
  equipmentNo: string
  equipmentName: string
  equipmentDeptName: string
  equipmentDirectorName: string
}