package com.gkhy.safePlatform.account.rpc.apimodel.model.req;
|
|
import java.io.Serializable;
|
|
public class MenuAddRPCReqDTO implements Serializable {
|
|
|
private static final long serialVersionUID = -4982157170454253350L;
|
/**
|
* @Description: 项目id
|
*/
|
private Long projectId;
|
|
/**
|
* @Description: 菜单名
|
*/
|
private String name;
|
/**
|
* @Description: 路径
|
*/
|
private String path;
|
|
/**
|
* @Description: 优先级
|
*/
|
private Byte priority;
|
|
private String description;
|
|
/**
|
* @Description: 父菜单id
|
*/
|
private Long parentId;
|
/**
|
* @Description: 重定向
|
*/
|
private String redirect;
|
/**
|
* @Description: 前端组件
|
*/
|
private String component;
|
|
/**
|
* @Description: 属性
|
*/
|
private MenuMetaRPCReqDTO meta;
|
|
|
public Long getProjectId() {
|
return projectId;
|
}
|
|
public void setProjectId(Long projectId) {
|
this.projectId = projectId;
|
}
|
|
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 Byte getPriority() {
|
return priority;
|
}
|
|
public void setPriority(Byte priority) {
|
this.priority = priority;
|
}
|
|
public String getDescription() {
|
return description;
|
}
|
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
|
|
|
public Long getParentId() {
|
return parentId;
|
}
|
|
public void setParentId(Long parentId) {
|
this.parentId = parentId;
|
}
|
|
public String getRedirect() {
|
return redirect;
|
}
|
|
public void setRedirect(String redirect) {
|
this.redirect = redirect;
|
}
|
|
public String getComponent() {
|
return component;
|
}
|
|
public void setComponent(String component) {
|
this.component = component;
|
}
|
|
public MenuMetaRPCReqDTO getMeta() {
|
return meta;
|
}
|
|
public void setMeta(MenuMetaRPCReqDTO meta) {
|
this.meta = meta;
|
}
|
}
|