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
| package com.ruoyi.basic.dto;
|
| import lombok.Data;
|
| import java.util.List;
|
| /**
| * 标准库固定两级树节点(行业 -> 标准)
| */
| @Data
| public class StandardLibraryTreeNodeDto {
|
| private Integer id;
|
| private String label;
|
| private String value;
|
| private String code;
|
| private String sampleEn;
|
| private Integer standardMethodId;
|
| private String standardCode;
|
| private String standardName;
|
| private List<StandardLibraryTreeNodeDto> children;
| }
|
|