songshankun
2023-11-02 8be1cd495fdcbc3a3599e57b7d21c4c186a018ed
src/api/task.ts
@@ -47,8 +47,8 @@
  startTime: number
  endTime: number
  workHours: string
  inputMaterials: string
  outputMaterials: string
  inputMaterials: inputMaterial[]
  outputMaterials: inputMaterial[]
  workers: Worker[]
  allProcedureNames: string[]
  channel: number
@@ -62,6 +62,14 @@
  CurrentProcedureIndex: number
  CanStarted: boolean
}
export interface inputMaterial {
  materialId: string
  materialName: string
  amount: number
  unit: string
  background: string
  date: string
}
export interface Worker {
  workerId: string