package com.gkhy.safePlatform.account.model.dto.resp; import com.fasterxml.jackson.annotation.JsonProperty; import org.omg.CORBA.PRIVATE_MEMBER; import java.io.Serializable; import java.util.List; /** * @Description: 菜单基本属性 */ public class MenuMetaRespDTO 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 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 List getRoles() { return roles; } public void setRoles(List roles) { this.roles = roles; } }