Newer
Older
smart-metering-front / src / views / device / bench / bench-interface.ts
// 折线图返回数据格式
export interface IPlanReturn {
  date: string // 日期
  count: string | number // 值
}

// 本月统计数据
export interface IPlanMonthlyStatisticsReturn {
  state: string // 类型
  count: string // 值
}

// 设备台账提醒、标准设备到期提醒表格数据
export interface ITableData {
  equipmentName: string // 设备名称
  usePersonName: string // 负责人
  mesureDate: string // 上次检定时间
}