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