All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.soento.core.lang.MenuInfo Maven / Gradle / Ivy

package com.soento.core.lang;

import lombok.Getter;
import lombok.Setter;

import java.util.Set;

/**
 * @author soento
 */
@Getter
@Setter
public class MenuInfo extends BaseObject {
    private String id;
    /**
     * 应用
     */
    private String app;
    /**
     * 名称
     */
    private String name;
    /**
     * 图标
     */
    private String icon;
    /**
     * 描述
     */
    private String description;
    /**
     * 父级菜单
     */
    private MenuInfo parent;
    /**
     * 子级菜单
     */
    private Set children;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy