package com.whyc.pojo;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import org.apache.ibatis.type.Alias;
import java.util.List;
/**
* 用户菜单
* 菜单和权限一一对应
*/
@Alias("Menu")
@TableName( schema = "`db_experiment`",value = "`tb_menu`")
public class Menu {
private Integer id;
private String name;
/**菜单的路径*/
private String url;
/**级别:1级,2级菜单...*/
@Deprecated
private String level;
/**父id*/
private Integer parentId;
/**排序*/
private Integer order;
/**菜单在用户中的状态*/
@TableField(exist = false)
private Integer status;
@TableField(exist = false)
private List