Newer
Older
smart-metering-front / src / views / business / board / equipmentReminder / equipmentReminder-interface.ts
// 筛选
export interface IListQuery {
  equipmentName: string	// 设备名称
  equipmentNo: string	// 设备编号
  mesureType: string // 检定方式
  useDept: string // 使用部门
  usePerson: string	// 使用人
  limit: number
  offset: number
}

// 字典
export interface dictType {
  name: string
  id: string
  value: string
}
// 表格数据
export interface IList {
  id: string // 主键
  equipmentNo: string // 设备编号
  equipmentName: string // 名称
  modelNo: string // 型号
  ABC: string // ABC
  mesureTypeName: string // 检定方式
  managerStateName: string // 管理状态
  useDeptName: string // 使用部门
  managerStausePersonNameteName: string // 使用人
  validDate: string // 有效日期
  remark: string // 备注
}