com.ape9527.core.entity.SysMenu Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ape-core Show documentation
Show all versions of ape-core Show documentation
Ape low code platform core module
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;
}