Newer
Older
xc-business-system / src / views / equipement / standard / checkItemClassification / checkItemClassification-interface.ts
// 请求参数
export interface IListQuery {
  belongStandardEquipment: string // 核查标准库
  categoryName: string // 核查项分类名称
  categoryNo: string // 核查项分类编号
  equipmentType: string // 标准库分类
  limit: number
  offset: number
}

export interface IList {
  id: string
  equipmentType: string // 标准库分类code
  equipmentTypeName: string // 标准库分类名称
  belongStandardEquipment: string // 核查标准库
  belongStandardEquipmentName: string // 核查标准库名称
  categoryName: string // 核查项分类名称
}

export interface IForm {
  belongStandardEquipment: string // 检校标准库code
  belongStandardEquipmentName: string // 检校标准库名称
  categoryName: string // 分类名称
  categoryNo: string // 分类编号
  equipmentType: string // 标准库分类
  equipmentTypeName: string // 标准库分类名称
}