zss
2024-12-20 d595e0cb5798a34d53ef9ac9045f07a25795b98f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.yuanchu.mom.vo;
 
import com.yuanchu.mom.pojo.InsProduct;
import lombok.Data;
 
@Data
public class ProductVo  {
 
    //管色标
    private String bushColor;
 
    //光纤色标
    private String color;
 
    //光纤带编号
    private String code;
 
    //检验项目
    private InsProduct insProduct;
 
 
}