zxl
8 天以前 0fb6b9d8d414822668c401a2b507df1fe6d1fa2d
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
29
package cn.lili.modules.member.entity.vo;
 
import cn.lili.modules.member.entity.dos.StoreMenu;
import cn.lili.modules.permission.entity.dos.Menu;
import lombok.Data;
 
/**
 * RoleMenuVO
 *
 * @author Chopper
 * @since 2020-11-24 11:45
 */
@Data
public class StoreUserMenuVO extends StoreMenu {
 
    private static final long serialVersionUID = -7478870595109016162L;
 
    /**
     * 是否是超级管理员
     */
    private Boolean isSuper;
 
    public Boolean getSuper() {
        if (this.isSuper == null) {
            return false;
        }
        return isSuper;
    }
}