Teamlinker/code/common/model/workflow_action.ts
sx1989827 490cd96425 add
2021-09-05 20:36:51 +08:00

10 lines
252 B
TypeScript

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