Skip to content

Commit 2768f9f

Browse files
committed
add checked filed in dss_workspace_dictionary table
1 parent 69cf4ca commit 2768f9f

File tree

1 file changed

+14
-1
lines changed
  • dss-framework/dss-framework-workspace-server/src/main/java/com/webank/wedatasphere/dss/framework/workspace/bean

1 file changed

+14
-1
lines changed

dss-framework/dss-framework-workspace-server/src/main/java/com/webank/wedatasphere/dss/framework/workspace/bean/DSSDictionary.java

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,18 @@ public class DSSDictionary implements Serializable {
124124
*/
125125
private Date updateTime;
126126

127+
/**
128+
* 默认勾选工作流开发流程
129+
*/
130+
private Integer checked;
131+
132+
public Integer getChecked() {
133+
return checked;
134+
}
135+
136+
public void setChecked(Integer checked) {
137+
this.checked = checked;
138+
}
127139

128140
public Integer getId() {
129141
return id;
@@ -298,7 +310,8 @@ public String toString() {
298310
", createUser='" + createUser + '\'' +
299311
", createTime=" + createTime +
300312
", updateUser='" + updateUser + '\'' +
301-
", updateTime=" + updateTime +
313+
", updateTime=" + updateTime + '\'' +
314+
", checked=" + checked +
302315
'}';
303316
}
304317
}

0 commit comments

Comments
 (0)