| 123456789101112131415161718 |
- export class Task {
- workId: number = 0
- nodeId: number = 0
- orderNo: string = ""
- name: string = ""
- urgencyLevel: string = ""
- completionTime: number | null = null
- cancellationTime: number | null = null
- cancellationReason: string | null = null
- // 发起人
- initiatorName: string | null = null
- // 当前执行人
- workerUserName: string | null = null
- workTime: number | null = null
- currentNodeId: string | null = null
- currentNodeName: string | null = null
- approvalStatus: string = ""
- }
|