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