1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package jnpf.permission.model.usergroup;
|
| import jnpf.util.treeutil.SumTree;
| import lombok.Data;
|
| /**
| * 转树模型
| *
| * @author :JNPF开发平台组
| * @version: V3.1.0
| * @copyright 引迈信息技术有限公司
| * @date :2022/3/11 11:18
| */
| @Data
| public class GroupTreeModel extends SumTree {
| private String fullName;
| private String type;
| private Long num;
|
| private Integer enabledMark;
| private String icon;
| }
|
|