package com.gkhy.fourierSpecialGasMonitor.api.controller.sysAdmin.dto.req;
|
|
public class ModifyMenuItemApiDTO {
|
|
private Long id;
|
|
private Long parentId;
|
|
private String description;
|
|
private String name;
|
|
private String path;
|
|
private String redirect;
|
|
private Byte priority;
|
|
private String component;
|
|
private Boolean publicable;
|
|
private MenuItemMetaDTO meta;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getParentId() {
|
return parentId;
|
}
|
|
public void setParentId(Long parentId) {
|
this.parentId = parentId;
|
}
|
|
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 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 getPublicable() {
|
return publicable;
|
}
|
|
public void setPublicable(Boolean publicable) {
|
this.publicable = publicable;
|
}
|
|
public String getDescription() {
|
return description;
|
}
|
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
|
public MenuItemMetaDTO getMeta() {
|
return meta;
|
}
|
|
public void setMeta(MenuItemMetaDTO meta) {
|
this.meta = meta;
|
}
|
}
|