增加flow_id字段

This commit is contained in:
xiang2lin 2025-05-08 08:48:18 +08:00
parent 6e3a47706a
commit 70c6f8adf3
1 changed files with 9 additions and 0 deletions

View File

@ -12,6 +12,8 @@ public class SysFlowStepEntity extends BaseEntity {
/** 步骤序号 */ /** 步骤序号 */
private Integer step; private Integer step;
//流程id
private String flowId;
/** 步骤类型;1定时任务2数据库3应用 */ /** 步骤类型;1定时任务2数据库3应用 */
private String stepType; private String stepType;
/** 描述 */ /** 描述 */
@ -112,5 +114,12 @@ public class SysFlowStepEntity extends BaseEntity {
this.sortMode = sortMode; this.sortMode = sortMode;
} }
public String getFlowId() {
return flowId;
}
public void setFlowId(String flowId) {
this.flowId = flowId;
}
} }