package com.gkhy.huataiFourierSpecialGasMonitor.api.controller.sysAdmin.dto.req;
|
|
import java.util.List;
|
|
public class MenuItemMetaDTO {
|
private String title;
|
|
private String isLink;
|
|
private Boolean isHide;
|
|
private Boolean isKeepAlive;
|
|
private Boolean isAffix;
|
|
private Boolean isIframe;
|
|
private String icon;
|
|
private List<Long> roles;
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getIsLink() {
|
return isLink;
|
}
|
|
public void setIsLink(String isLink) {
|
this.isLink = isLink;
|
}
|
|
public Boolean getIsHide() {
|
return isHide;
|
}
|
|
public void setIsHide(Boolean hide) {
|
isHide = hide;
|
}
|
|
public Boolean getIsKeepAlive() {
|
return isKeepAlive;
|
}
|
|
public void setIsKeepAlive(Boolean keepAlive) {
|
isKeepAlive = keepAlive;
|
}
|
|
public Boolean getIsAffix() {
|
return isAffix;
|
}
|
|
public void setIsAffix(Boolean affix) {
|
isAffix = affix;
|
}
|
|
public Boolean getIsIframe() {
|
return isIframe;
|
}
|
|
public void setIsIframe(Boolean iframe) {
|
isIframe = iframe;
|
}
|
|
public String getIcon() {
|
return icon;
|
}
|
|
public void setIcon(String icon) {
|
this.icon = icon;
|
}
|
|
public Boolean getHide() {
|
return isHide;
|
}
|
|
public void setHide(Boolean hide) {
|
isHide = hide;
|
}
|
|
public Boolean getKeepAlive() {
|
return isKeepAlive;
|
}
|
|
public void setKeepAlive(Boolean keepAlive) {
|
isKeepAlive = keepAlive;
|
}
|
|
public Boolean getAffix() {
|
return isAffix;
|
}
|
|
public void setAffix(Boolean affix) {
|
isAffix = affix;
|
}
|
|
public Boolean getIframe() {
|
return isIframe;
|
}
|
|
public void setIframe(Boolean iframe) {
|
isIframe = iframe;
|
}
|
|
public List<Long> getRoles() {
|
return roles;
|
}
|
|
public void setRoles(List<Long> roles) {
|
this.roles = roles;
|
}
|
}
|