Fixiaobai
2023-11-12 17eb62f9d9cb2706296ea35f241dd8aafbebd6f2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.chinaztt.mes.basic.vo;
 
import lombok.Data;
 
@Data
//零件属性
public class PropertiesInfoVo {
 
    //属性code
    private String attribute_code;
 
    //属性名称
    private String attribute;
 
    //属性值
    private String attribute_value;
 
    //属性单位
    private String attribute_unit;
}