Teamlinker/code/server/common/db/model/mysql/workflow_action.ts
sx1989827 ffaecc5b86 add
2021-08-09 23:08:08 +08:00

10 lines
263 B
TypeScript

export default interface IServer_DB_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"