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
/**
*
*/
package com.hp.cmsz.entity;
import java.io.Serializable;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.SequenceGenerator;
import javax.persistence.Table;
/**
* pzx_attri_value_v表对应的实体类
*
* @author Eric
*
*/
@Entity
@Table(name = "pzx_attri_value_v")
public class PzxAttributeValueView implements Serializable{
private Long ciAttributeValueId;//配置项属性值ID
private String ciAttributeValue;//配置项属性值
private Long ciAttributeId;//配置项属性ID
private String ciAttributeName;//配置项属性名
private String ciCategoryId;//配置项类别ID
@Id
public Long getCiAttributeValueId() {
return ciAttributeValueId;
}
public void setCiAttributeValueId(Long ciAttributeValueId) {
this.ciAttributeValueId = ciAttributeValueId;
}
public String getCiAttributeValue() {
return ciAttributeValue;
}
public void setCiAttributeValue(String ciAttributeValue) {
this.ciAttributeValue = ciAttributeValue;
}
public Long getCiAttributeId() {
return ciAttributeId;
}
public void setCiAttributeId(Long ciAttributeId) {
this.ciAttributeId = ciAttributeId;
}
public String getCiAttributeName() {
return ciAttributeName;
}
public void setCiAttributeName(String ciAttributeName) {
this.ciAttributeName = ciAttributeName;
}
public String getCiCategoryId() {
return ciCategoryId;
}
public void setCiCategoryId(String ciCategoryId) {
this.ciCategoryId = ciCategoryId;
}
}