1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package com.yuanchu.limslaboratory.pojo;
|
| import lombok.Data;
|
| import java.io.Serializable;
| import java.util.List;
|
| /**
| * @Author 张宾
| * @Date 2023/8/31
| */
| @Data
| public class ClassAndInsTree implements Serializable {
|
| private Integer fatherId;
|
| private String fatherName;
|
| List<ClassAndIns> childrenList;
|
| }
|
|