Crunchy
2024-08-06 b939331cf60d3bb36ee8aa208cf05c3a5a04415f
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
package com.yuanchu.mom.dto;
 
import com.yuanchu.mom.pojo.InsProduct;
import com.yuanchu.mom.pojo.InsSample;
import lombok.Data;
 
import java.util.List;
 
@Data
public class SampleProductDto3 extends InsSample {
 
    private List<InsProduct> insProduct;
 
    private List<BushingDto> bushing;
 
    private List<SampleProductDto3> childSampleList;
 
    private InsulatingDto insulating;
 
    private SheathDto sheath;
    private String code;
    private String ioSampleType;
 
    private Integer isLeave;
 
}