forked from ps2hc5nfx/youxi
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
943 B
52 lines
943 B
package com.ischoolbar.programmer.entity.admin;
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
@Component
|
|
public class Menu {
|
|
private Long id;
|
|
private Long parentId;
|
|
private Long _parentId;
|
|
private String name;
|
|
private String url;
|
|
private String icon;
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
}
|
|
public Long getParentId() {
|
|
return parentId;
|
|
}
|
|
public void setParentId(Long parentId) {
|
|
this.parentId = parentId;
|
|
}
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
public String getUrl() {
|
|
return url;
|
|
}
|
|
public void setUrl(String url) {
|
|
this.url = url;
|
|
}
|
|
public String getIcon() {
|
|
return icon;
|
|
}
|
|
public void setIcon(String icon) {
|
|
this.icon = icon;
|
|
}
|
|
public Long get_parentId() {
|
|
_parentId = parentId;
|
|
return _parentId;
|
|
}
|
|
public void set_parentId(Long _parentId) {
|
|
this._parentId = _parentId;
|
|
}
|
|
}
|