Task.ets 511 B

123456789101112131415161718
  1. export class Task {
  2. workId: number = 0
  3. nodeId: number = 0
  4. orderNo: string = ""
  5. name: string = ""
  6. urgencyLevel: string = ""
  7. completionTime: number | null = null
  8. cancellationTime: number | null = null
  9. cancellationReason: string | null = null
  10. // 发起人
  11. initiatorName: string | null = null
  12. // 当前执行人
  13. workerUserName: string | null = null
  14. workTime: number | null = null
  15. currentNodeId: string | null = null
  16. currentNodeName: string | null = null
  17. approvalStatus: string = ""
  18. }