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
| package com.ruoyi.basic.dto;
|
| import lombok.Data;
|
| import java.util.List;
|
| @Data
| public class SampleTypeDto {
|
| private String code = "[3]";
|
| // 检测对象id
| private Integer sampleTypeId;
|
| // 检测对象排序
| private Integer sort;
|
| private String label;
|
| private String value;
|
| private String partNo;
|
| // 对象英文
| private String sampleTypeEn;
|
| private List<SampleDto> children;
|
| }
|
|