mirror of
https://github.com/Teamlinker/Teamlinker.git
synced 2025-06-03 03:00:17 +00:00
24 lines
532 B
TypeScript
24 lines
532 B
TypeScript
import { BaseModel } from "./base"
|
|
|
|
export enum ECommon_Model_Workflow_Node_Status {
|
|
NOTSTART,
|
|
INPROGRESS,
|
|
DONE
|
|
}
|
|
|
|
export interface ICommon_Model_Workflow_Node {
|
|
id :string ,
|
|
name :string,
|
|
description :string,
|
|
reserved :number,
|
|
status :ECommon_Model_Workflow_Node_Status,
|
|
workflow_id :string ,
|
|
}
|
|
export const Table_Workflow_Node="workflow_node"
|
|
|
|
class WorkflowNodeModel extends BaseModel {
|
|
table=Table_Workflow_Node
|
|
model=<ICommon_Model_Workflow_Node>{}
|
|
}
|
|
|
|
export let workflowNodeModel=new WorkflowNodeModel |