chenjiahe
2024-03-19 519f912a6e0720929216a088ba82fd3e8b3c7595
提交 | 用户 | age
a8ccd0 1 package com.hz.his.vo.label;
C 2
3 import lombok.Data;
4
5 import java.util.ArrayList;
6 import java.util.List;
7
8 /**
9  * @author CJH
10  */
11 @Data
12 public class LabelTypeVo {
13
14     /**标签分类标识*/
15     private String id;
16     /**标签分类名称*/
17     private String name;
18
19     /**标签集合*/
20     private List<LabelVo> labelList;
21     /**子类*/
22     private List<LabelTypeVo> childList = new ArrayList<>();
23
24
25     public LabelTypeVo() {
26     }
27
28     public LabelTypeVo(String id, String name) {
29         this.id = id;
30         this.name = name;
31     }
32 }