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;
| }
|
|