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
30
31
32
| package com.hz.his.vo.label;
|
| import lombok.Data;
|
| import java.util.ArrayList;
| import java.util.List;
|
| /**
| * @author CJH
| */
| @Data
| public class LabelTypeVo {
|
| /**标签分类标识*/
| private String id;
| /**标签分类名称*/
| private String name;
|
| /**标签集合*/
| private List<LabelVo> labelList;
| /**子类*/
| private List<LabelTypeVo> childList = new ArrayList<>();
|
|
| public LabelTypeVo() {
| }
|
| public LabelTypeVo(String id, String name) {
| this.id = id;
| this.name = name;
| }
| }
|
|