flow.uts 852 B

123456789101112131415161718
  1. // 工单流转信息
  2. export type WorkOrderFlow = {
  3. id: Number // 流转记录ID
  4. orderId: Number // 工单ID
  5. orderCode: string // 工单编码
  6. actionType: string // 操作类型:create-创建,assign-派单,accept-接单,process-处理,pause-暂停,suspend-挂起,restart-重启,approve-审批,complete-完成
  7. fromStatus: string | null // 原状态
  8. toStatus: string // 目标状态
  9. operatorId: Number | null // 操作人ID
  10. operatorName: string | null // 操作人姓名
  11. actionTime: string // 操作时间
  12. actionRemark: string | null // 操作备注
  13. createBy: string | null // 创建者
  14. createTime: string | null // 创建时间
  15. }
  16. // 工单流转列表
  17. export type WorkOrderFlowList = WorkOrderFlow[]