增加flow_id字段
This commit is contained in:
parent
6e3a47706a
commit
70c6f8adf3
|
@ -12,6 +12,8 @@ public class SysFlowStepEntity extends BaseEntity {
|
|||
|
||||
/** 步骤序号 */
|
||||
private Integer step;
|
||||
//流程id
|
||||
private String flowId;
|
||||
/** 步骤类型;1定时任务2数据库3应用 */
|
||||
private String stepType;
|
||||
/** 描述 */
|
||||
|
@ -112,5 +114,12 @@ public class SysFlowStepEntity extends BaseEntity {
|
|||
this.sortMode = sortMode;
|
||||
}
|
||||
|
||||
public String getFlowId() {
|
||||
return flowId;
|
||||
}
|
||||
|
||||
public void setFlowId(String flowId) {
|
||||
this.flowId = flowId;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue