xiangpei
2025-06-12 10b9fccb1908fb60a30a54f584d1b96ac22a2e4e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package cn.lili.modules.permission.entity.vo;
 
import cn.lili.modules.permission.entity.dos.Menu;
import lombok.Data;
 
/**
 * RoleMenuVO
 *
 * @author Chopper
 * @since 2020-11-24 11:45
 */
@Data
public class UserMenuVO extends Menu {
 
    private static final long serialVersionUID = -7478870595109016162L;
 
    /**
     * 是否是超级管理员
     */
    private Boolean isSuper;
 
    public Boolean getSuper() {
        if (this.isSuper == null) {
            return false;
        }
        return isSuper;
    }
}