Fixiaobai
2023-11-04 958e45e28ca4f591ab13f2c6f4fe27d57c4880d5
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;
}