package com.gkhy.huataiFourierSpecialGasMonitor.application.sysAdmin.model.dto.req;
|
|
import java.util.List;
|
|
public class AddAndUpdateMenuItemAppDTO {
|
|
private Long menuItemId;
|
|
//父级菜单
|
private Long parentId;
|
|
//菜单项显示标题
|
private String title;
|
|
//菜单项描述信息
|
private String descInfo;
|
|
//菜单项名称
|
private String name;
|
|
//路径
|
private String path;
|
|
//重定向路径
|
private String redirect;
|
|
private String link;
|
|
//
|
private boolean visiable;
|
|
//
|
private String icon;
|
|
//
|
private Byte priority;
|
|
private String component;
|
|
private Boolean aliveable;
|
|
private Boolean affixable;
|
|
private Boolean iframeable;
|
|
private Boolean publicable;
|
|
private List<Long> roles;
|
|
public Long getMenuItemId() {
|
return menuItemId;
|
}
|
|
public void setMenuItemId(Long menuItemId) {
|
this.menuItemId = menuItemId;
|
}
|
|
public Long getParentId() {
|
return parentId;
|
}
|
|
public void setParentId(Long parentId) {
|
this.parentId = parentId;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getDescInfo() {
|
return descInfo;
|
}
|
|
public void setDescInfo(String descInfo) {
|
this.descInfo = descInfo;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getPath() {
|
return path;
|
}
|
|
public void setPath(String path) {
|
this.path = path;
|
}
|
|
public String getRedirect() {
|
return redirect;
|
}
|
|
public void setRedirect(String redirect) {
|
this.redirect = redirect;
|
}
|
|
public String getLink() {
|
return link;
|
}
|
|
public void setLink(String link) {
|
this.link = link;
|
}
|
|
public boolean isVisiable() {
|
return visiable;
|
}
|
|
public void setVisiable(boolean visiable) {
|
this.visiable = visiable;
|
}
|
|
public String getIcon() {
|
return icon;
|
}
|
|
public void setIcon(String icon) {
|
this.icon = icon;
|
}
|
|
public Byte getPriority() {
|
return priority;
|
}
|
|
public void setPriority(Byte priority) {
|
this.priority = priority;
|
}
|
|
public String getComponent() {
|
return component;
|
}
|
|
public void setComponent(String component) {
|
this.component = component;
|
}
|
|
public Boolean getAliveable() {
|
return aliveable;
|
}
|
|
public void setAliveable(Boolean aliveable) {
|
this.aliveable = aliveable;
|
}
|
|
public Boolean getAffixable() {
|
return affixable;
|
}
|
|
public void setAffixable(Boolean affixable) {
|
this.affixable = affixable;
|
}
|
|
public Boolean getIframeable() {
|
return iframeable;
|
}
|
|
public void setIframeable(Boolean iframeable) {
|
this.iframeable = iframeable;
|
}
|
|
public Boolean getPublicable() {
|
return publicable;
|
}
|
|
public void setPublicable(Boolean publicable) {
|
this.publicable = publicable;
|
}
|
|
public List<Long> getRoles() {
|
return roles;
|
}
|
|
public void setRoles(List<Long> roles) {
|
this.roles = roles;
|
}
|
}
|