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

com.ape9527.core.entity.SysMenu Maven / Gradle / Ivy

The newest version!
package com.ape9527.core.entity;

import com.ape9527.core.entity.BaseEntity;
import lombok.Data;

/**
 * 系统菜单
 *
 * @author YuanShuai[[email protected]]
 */
@Data
public class SysMenu extends BaseEntity {

    /** 菜单名称 */
    private String menuName;

    /** 菜单类型:0 菜单,1 按钮 */
    private Integer menuType;

    /** 菜单路由 */
    private String menuRouter;

    /** 菜单图标 */
    private String menuIcon;

    /** 父级菜单id */
    private String parentId;

    /** 排序 */
    private Integer sort;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy