Teamlinker/code/common/model/workflow_action.ts
sx1989827 0e724bd185 aa
2021-12-27 21:59:34 +08:00

10 lines
254 B
TypeScript

export interface ICommon_Model_Workflow_Action {
id :string ,
name :string,
reserved :number,
description :string,
source_node_id :string ,
dest_node_id :string ,
workflow_id :string,
}
export const Table_Workflow_Action="workflow_action"