package com.gkhy.huataiFourierSpecialGasMonitor.api.controller.model.dto.resp;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* @Description: 菜单基本属性
|
*/
|
public class MenuItemMetaApiDTO implements Serializable {
|
|
private static final long serialVersionUID = 3278913464169090683L;
|
|
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 void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public String getIsLink() {
|
return isLink;
|
}
|
|
public void setIsLink(String isLink) {
|
this.isLink = isLink;
|
}
|
|
public Boolean getIsHide() {
|
return isHide;
|
}
|
|
public void setIsHide(Boolean isHide) {
|
this.isHide = isHide;
|
}
|
|
public Boolean getIsKeepAlive() {
|
return isKeepAlive;
|
}
|
|
public void setIsKeepAlive(Boolean isKeepAlive) {
|
this.isKeepAlive = isKeepAlive;
|
}
|
|
public Boolean getIsAffix() {
|
return isAffix;
|
}
|
|
public void setIsAffix(Boolean isAffix) {
|
this.isAffix = isAffix;
|
}
|
|
public Boolean getIsIframe() {
|
return isIframe;
|
}
|
|
public void setIsIframe(Boolean isIframe) {
|
this.isIframe = isIframe;
|
}
|
|
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;
|
}
|
}
|