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.
 
 
 
 

52 lines
925 B

package com.fr.plugin.cpic.web.bean;
import java.util.List;
public class UserMenuBean {
private String id;
private String title;
private String pid;
private String mtype;
private List<UserMenuBean> children;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getPid() {
return pid;
}
public void setPid(String pid) {
this.pid = pid;
}
public String getMtype() {
return mtype;
}
public void setMtype(String mtype) {
this.mtype = mtype;
}
public List<UserMenuBean> getChildren() {
return children;
}
public void setChildren(List<UserMenuBean> children) {
this.children = children;
}
}