Skip to content

Commit

Permalink
add checked filed in dss_workspace_dictionary table
Browse files Browse the repository at this point in the history
  • Loading branch information
yuankang134 committed Dec 20, 2023
1 parent bd96b26 commit 339ebea
Showing 1 changed file with 14 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,18 @@ public class DSSDictionary implements Serializable {
*/
private Date updateTime;

/**
* 默认勾选工作流开发流程
*/
private Integer checked;

public Integer getChecked() {
return checked;
}

public void setChecked(Integer checked) {
this.checked = checked;
}

public Integer getId() {
return id;
Expand Down Expand Up @@ -298,7 +310,8 @@ public String toString() {
", createUser='" + createUser + '\'' +
", createTime=" + createTime +
", updateUser='" + updateUser + '\'' +
", updateTime=" + updateTime +
", updateTime=" + updateTime + '\'' +
", checked=" + checked +
'}';
}
}

0 comments on commit 339ebea

Please sign in to comment.