You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

166 lines
2.7 KiB

package com.fr.plugin.xx.theme.sky.web;
import java.util.ArrayList;
import java.util.List;
/**
* @author k
* @Project name finereport10
* @description:
* @created on 2019/10/27 16:44.
* @email xx.xx@qq.com
* @Modified By
*/
public class EntryBeanModel {
private String id;
private String pId;
private String text;
private String path;
private String description;
private int deviceType = 1;
private int entryType;
private String nodeIcon;
private String mobileNodeIcon;
private long sortIndex;
private boolean isParent;
private boolean open;
private String value;
private String icon;
private String cover;
private List<EntryBeanModel> childs = new ArrayList();
public EntryBeanModel() {
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getpId() {
return pId;
}
public void setpId(String pId) {
this.pId = pId;
}
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public int getDeviceType() {
return deviceType;
}
public void setDeviceType(int deviceType) {
this.deviceType = deviceType;
}
public int getEntryType() {
return entryType;
}
public void setEntryType(int entryType) {
this.entryType = entryType;
}
public String getNodeIcon() {
return nodeIcon;
}
public void setNodeIcon(String nodeIcon) {
this.nodeIcon = nodeIcon;
}
public String getMobileNodeIcon() {
return mobileNodeIcon;
}
public void setMobileNodeIcon(String mobileNodeIcon) {
this.mobileNodeIcon = mobileNodeIcon;
}
public long getSortIndex() {
return sortIndex;
}
public void setSortIndex(long sortIndex) {
this.sortIndex = sortIndex;
}
public boolean isIsParent() {
return this.isParent;
}
public void setIsParent(boolean isParent) {
this.isParent = isParent;
}
public boolean isOpen() {
return open;
}
public void setOpen(boolean open) {
this.open = open;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public String getIcon() {
return icon;
}
public void setIcon(String icon) {
this.icon = icon;
}
public String getCover() {
return cover;
}
public void setCover(String cover) {
this.cover = cover;
}
public List<EntryBeanModel> getChilds() {
return childs;
}
public void addChild(EntryBeanModel var1) {
this.childs.add(var1);
}
public void setChilds(List<EntryBeanModel> var1) {
this.childs = var1;
}
}