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