UNPKG

@tachybase/module-workflow

Version:

A powerful BPM tool that provides foundational support for business automation, with the capability to extend unlimited triggers and nodes.

15 lines (14 loc) 403 B
import { BelongsToGetAssociationMixin, Model } from '@tego/server'; import FlowNodeModel from './FlowNode'; export default class JobModel extends Model { id: number; status: number; result: any; createdAt: Date; updatedAt: Date; upstreamId: number; upstream: JobModel; nodeId: number; node?: FlowNodeModel; getNode: BelongsToGetAssociationMixin<FlowNodeModel>; }