|
|
|
@ -4,7 +4,7 @@ import lombok.Data;
|
|
|
|
|
|
|
|
|
|
import java.util.Objects;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Data
|
|
|
|
|
public class PluginSysMenu {
|
|
|
|
|
|
|
|
|
|
private Long menuId;
|
|
|
|
@ -68,160 +68,4 @@ public class PluginSysMenu {
|
|
|
|
|
public int hashCode() {
|
|
|
|
|
return Objects.hash(menuId);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getMenuId() {
|
|
|
|
|
return menuId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setMenuId(Long menuId) {
|
|
|
|
|
this.menuId = menuId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getPid() {
|
|
|
|
|
return pid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setPid(Long pid) {
|
|
|
|
|
this.pid = pid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Integer getSubCount() {
|
|
|
|
|
return subCount;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setSubCount(Integer subCount) {
|
|
|
|
|
this.subCount = subCount;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Integer getType() {
|
|
|
|
|
return type;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setType(Integer type) {
|
|
|
|
|
this.type = type;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getTitle() {
|
|
|
|
|
return title;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setTitle(String title) {
|
|
|
|
|
this.title = title;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getName() {
|
|
|
|
|
return name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setName(String name) {
|
|
|
|
|
this.name = name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getComponent() {
|
|
|
|
|
return component;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setComponent(String component) {
|
|
|
|
|
this.component = component;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Integer getMenuSort() {
|
|
|
|
|
return menuSort;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setMenuSort(Integer menuSort) {
|
|
|
|
|
this.menuSort = menuSort;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getIcon() {
|
|
|
|
|
return icon;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setIcon(String icon) {
|
|
|
|
|
this.icon = icon;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getPath() {
|
|
|
|
|
return path;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setPath(String path) {
|
|
|
|
|
this.path = path;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Boolean getiFrame() {
|
|
|
|
|
return iFrame;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setiFrame(Boolean iFrame) {
|
|
|
|
|
this.iFrame = iFrame;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Boolean getCache() {
|
|
|
|
|
return cache;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setCache(Boolean cache) {
|
|
|
|
|
this.cache = cache;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Boolean getHidden() {
|
|
|
|
|
return hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setHidden(Boolean hidden) {
|
|
|
|
|
this.hidden = hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getPermission() {
|
|
|
|
|
return permission;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setPermission(String permission) {
|
|
|
|
|
this.permission = permission;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getCreateBy() {
|
|
|
|
|
return createBy;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setCreateBy(String createBy) {
|
|
|
|
|
this.createBy = createBy;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getUpdateBy() {
|
|
|
|
|
return updateBy;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setUpdateBy(String updateBy) {
|
|
|
|
|
this.updateBy = updateBy;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getCreateTime() {
|
|
|
|
|
return createTime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setCreateTime(Long createTime) {
|
|
|
|
|
this.createTime = createTime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getUpdateTime() {
|
|
|
|
|
return updateTime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setUpdateTime(Long updateTime) {
|
|
|
|
|
this.updateTime = updateTime;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public boolean isNoLayout() {
|
|
|
|
|
return noLayout;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setNoLayout(boolean noLayout) {
|
|
|
|
|
this.noLayout = noLayout;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static long getSerialVersionUID() {
|
|
|
|
|
return serialVersionUID;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|