zss
2024-08-06 a968d22689475fc7ddea69ee408b290e810dd835
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
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 SampleProductDto extends InsSample {
 
    private List<InsProduct> insProduct;
 
    private List<BushingDto> bushing;
 
    private List<SampleProductDto> childSampleList;
 
    private InsulatingDto insulating;
 
    private SheathDto sheath;
 
    //检验人
    private String checkName;
 
}