zss
2024-12-30 97bb7a8832281eafe0ef947ea095258d355e52f5
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;
 
 
}