AuxProperty.java
1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package com.huaheng.api.erp.domain;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import com.huaheng.common.utils.StringUtils;
import com.huaheng.pc.config.material.domain.Material;
public class AuxProperty {
/**
* 等级
*/
@SerializedName("FAUXPROPID__FF100001")
private ConvertObj level;
/**
* 色号
*/
@SerializedName("FAUXPROPID__FF100002")
private ConvertObj color;
/**
* 包装
*/
@SerializedName("FAUXPROPID__FF100003")
private ConvertObj proPackaging;
/**
* 订单
*/
@SerializedName("FAUXPROPID__FF100007")
private ConvertObj productSchedule;
/**
* 产品尺寸
*
*/
@SerializedName("FAUXPROPID__FF100008")
private ConvertObj productSize;
public AuxProperty() {
}
public ConvertObj getLevel() {
return level;
}
public void setLevel(ConvertObj level) {
this.level = level;
}
public ConvertObj getColor() {
return color;
}
public void setColor(ConvertObj color) {
this.color = color;
}
public ConvertObj getProPackaging() {
return proPackaging;
}
public void setProPackaging(ConvertObj proPackaging) {
this.proPackaging = proPackaging;
}
public ConvertObj getProductSchedule() {
return productSchedule;
}
public void setProductSchedule(ConvertObj productSchedule) {
this.productSchedule = productSchedule;
}
public ConvertObj getProductSize() {
return productSize;
}
public void setProductSize(ConvertObj productSize) {
this.productSize = productSize;
}
}