Newer
Older
xc-business-system / src / views / business / measure / item / item-interface.ts
dutingting on 2 Dec 1 KB 临时提交
export interface IListQuery {
  asTemplate?: number | string //	是否为模板(查询引用模板时该字段必传1)
  belongStandardEquipment?: string //	所属检校标准装置(字典code)
  dataSync?: number | string //	检定项数据是否同步(1/0)
  deviceName?: string //	设备名称
  deviceType?: string //	设备分类(字典code)
  helpInstruction?: string //	辅助字段
  itemCategoryId?: string //	设备检定项分类表id(查询引用模板时该字段必传)
  model?: string //	规格型号
  noConfigFlag?: number | string //	未配置检定项(1查询未配置,不传为查询所有)
  syncTimeEnd?: string //		自动检定系统最新同步时间结束
  syncTimeStart?: string //		自动检定系统最新同步时间开始
  limit: number
  offset: number
}

export interface IList {
  id: string
  deviceName: string // 设备名称
  model: string // 规格型号
  helpInstruction: string // 辅助字段
  helpFieldInstruction: string // 辅助字段说明
  deviceType: string // 设备分类(检校分类)
  deviceTypeName: string // 设备分类(检校分类)名称
  belongStandardEquipment: string // 检校标准装置
  belongStandardEquipmentName: string // 检校标准装置名称
  itemCategoryId: string // 设备检定项分类id
  itemCategoryName: string // 设备检定项分类
  updateTime: string // 检定项更新时间
  dataSyncStr: string // 自动检定系统数据是否同步
  syncTime: string // 自动检定系统最新同步时间
  checkCycle?: string
  eqptDeviceModelId?: string
  deviceModelId?: string
  configType?: string // 检定项配置类型--新增
  detailList?: any // 检定项详情表格
}