123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- package org.jeecg.modules.system.model;
- import java.io.Serializable;
- import java.util.List;
- /**
- * 树形下拉框
- */
- public class TreeSelectModel implements Serializable {
- private static final long serialVersionUID = 9016390975325574747L;
- private String key;
-
- private String title;
-
- private boolean isLeaf;
-
- private String icon;
-
- private String parentId;
-
- private String value;
-
- private String code;
-
- public String getValue() {
- return value;
- }
- public void setValue(String value) {
- this.value = value;
- }
- public String getParentId() {
- return parentId;
- }
- public void setParentId(String parentId) {
- this.parentId = parentId;
- }
- public String getKey() {
- return key;
- }
- public void setKey(String key) {
- this.key = key;
- }
- public String getTitle() {
- return title;
- }
- public void setTitle(String title) {
- this.title = title;
- }
- public boolean isLeaf() {
- return isLeaf;
- }
- public void setLeaf(boolean isLeaf) {
- this.isLeaf = isLeaf;
- }
- public String getIcon() {
- return icon;
- }
- public void setIcon(String icon) {
- this.icon = icon;
- }
- public String getCode() {
- return code;
- }
- public void setCode(String code) {
- this.code = code;
- }
-
- private List<TreeSelectModel> children;
- public List<TreeSelectModel> getChildren() {
- return children;
- }
- public void setChildren(List<TreeSelectModel> children) {
- this.children = children;
- }
- }
|