AttributeValue.java
1.53 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
package com.dili.titan.domain;
/**
* attributeValue
*
* @author dev-center
* @since 2014-05-10
*/
public class AttributeValue extends BaseQuery {
private static final long serialVersionUID = 1L;
private Long valueId;
private Long attrId;
private String value;
private Integer order;
private Integer show;
private Integer status;
public AttributeValue() {
// 默认无参构造方法
}
/**
* 获取 attrId
*
* @return
*/
public Long getAttrId() {
return attrId;
}
/**
* 设置 attrId
*
* @param attrId
*/
public void setAttrId(Long attrId) {
this.attrId = attrId;
}
/**
* 获取 value
*
* @return
*/
public String getValue() {
return value;
}
/**
* 设置 value
*
* @param value
*/
public void setValue(String value) {
this.value = value;
}
/**
* 获取 order
*
* @return
*/
public Integer getOrder() {
return order;
}
/**
* 设置 order
*
* @param order
*/
public void setOrder(Integer order) {
this.order = order;
}
/**
* 获取 show
*
* @return
*/
public Integer getShow() {
return show;
}
/**
* 设置 show
*
* @param show
*/
public void setShow(Integer show) {
this.show = show;
}
/**
* 获取 status
*
* @return
*/
public Integer getStatus() {
return status;
}
/**
* 设置 status
*
* @param status
*/
public void setStatus(Integer status) {
this.status = status;
}
public Long getValueId() {
return valueId;
}
public void setValueId(Long valueId) {
this.valueId = valueId;
}
}