| | |
| | | startTime: number |
| | | endTime: number |
| | | Status: number |
| | | finishNumber: number |
| | | } |
| | | |
| | | export interface Procedure { |
| | |
| | | workHours: string |
| | | inputMaterials: string |
| | | outputMaterials: string |
| | | workers: Workers[] |
| | | workers: Worker[] |
| | | allProcedureNames: string[] |
| | | channel: number |
| | | } |
| | |
| | | CanStarted: boolean |
| | | } |
| | | |
| | | export interface Workers { |
| | | export interface Worker { |
| | | workerId: string |
| | | workerName: string |
| | | phoneNum: string |
| | |
| | | export interface TasksResponse { |
| | | Tasks: Task[] |
| | | TaskCount: number |
| | | workers: Workers[] |
| | | workers: Worker[] |
| | | Prompt: Prompt |
| | | ChannelAmount: number |
| | | } |
| | | |
| | | export interface TasksGroupByChannel { |
| | | [channel: number]: TasksResponse |
| | | } |