1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.zy.crm.manager.entity.param;
|
| import com.zy.crm.system.entity.User;
| import lombok.Data;
|
| import java.util.List;
|
| @Data
| public class UserChildrenParam {
| private Long id;
| private Long userId;
| private Long deptId;
| private String label;
| private List<UserChildrenParam> children;
|
| public UserChildrenParam(){}
| public UserChildrenParam(Long id,Long userId,Long deptId,String label,List<UserChildrenParam> children){
| this.id = id;
| this.userId = userId;
| this.deptId = deptId;
| this.label = label;
| this.children = children;
| }
| }
|
|