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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
package com.hp.cmsz.entity;
import java.util.Date;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
/**
* PZX_DETAIL_INFO_V视图对应的实体类
*
* @author Eric
*
*/
@Entity
@Table(name = "PZX_DETAIL_INFO_V")
public class PzxDetailInfoView {
private Long configItemId;//
private Long providerId;//
private Long ciCategoryId;//
private Long provinceId;//
private Long ciChangeCd;//
private Long changeTypeId;//
private Long ciSubrelationId;//
private Long ciRelationMappingId;//
private String ifKeyCi;//
private String ciName;//
private String ciCategoryName;//
private String ciClass;//
private String provinceName;//
private String ciSubrelationEName;//
private String ciSubrelationCName;//
private String ciRelation;//
private Date ciTime;//
private Date changeStartTime;//
private Date changeEndTime;//
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
public Long getConfigItemId() {
return configItemId;
}
public void setConfigItemId(Long configItemId) {
this.configItemId = configItemId;
}
public Long getProviderId() {
return providerId;
}
public void setProviderId(Long providerId) {
this.providerId = providerId;
}
public Long getCiCategoryId() {
return ciCategoryId;
}
public void setCiCategoryId(Long ciCategoryId) {
this.ciCategoryId = ciCategoryId;
}
public Long getProvinceId() {
return provinceId;
}
public void setProvinceId(Long provinceId) {
this.provinceId = provinceId;
}
public Long getCiChangeCd() {
return ciChangeCd;
}
public void setCiChangeCd(Long ciChangeCd) {
this.ciChangeCd = ciChangeCd;
}
public Long getChangeTypeId() {
return changeTypeId;
}
public void setChangeTypeId(Long changeTypeId) {
this.changeTypeId = changeTypeId;
}
public Long getCiSubrelationId() {
return ciSubrelationId;
}
public void setCiSubrelationId(Long ciSubrelationId) {
this.ciSubrelationId = ciSubrelationId;
}
public Long getCiRelationMappingId() {
return ciRelationMappingId;
}
public void setCiRelationMappingId(Long ciRelationMappingId) {
this.ciRelationMappingId = ciRelationMappingId;
}
public String getIfKeyCi() {
return ifKeyCi;
}
public void setIfKeyCi(String ifKeyCi) {
this.ifKeyCi = ifKeyCi;
}
public String getCiName() {
return ciName;
}
public void setCiName(String ciName) {
this.ciName = ciName;
}
public String getCiCategoryName() {
return ciCategoryName;
}
public void setCiCategoryName(String ciCategoryName) {
this.ciCategoryName = ciCategoryName;
}
public String getCiClass() {
return ciClass;
}
public void setCiClass(String ciClass) {
this.ciClass = ciClass;
}
public String getProvinceName() {
return provinceName;
}
public void setProvinceName(String provinceName) {
this.provinceName = provinceName;
}
public String getCiSubrelationEName() {
return ciSubrelationEName;
}
public void setCiSubrelationEName(String ciSubrelationEName) {
this.ciSubrelationEName = ciSubrelationEName;
}
public String getCiSubrelationCName() {
return ciSubrelationCName;
}
public void setCiSubrelationCName(String ciSubrelationCName) {
this.ciSubrelationCName = ciSubrelationCName;
}
public String getCiRelation() {
return ciRelation;
}
public void setCiRelation(String ciRelation) {
this.ciRelation = ciRelation;
}
public Date getCiTime() {
return ciTime;
}
public void setCiTime(Date ciTime) {
this.ciTime = ciTime;
}
public Date getChangeStartTime() {
return changeStartTime;
}
public void setChangeStartTime(Date changeStartTime) {
this.changeStartTime = changeStartTime;
}
public Date getChangeEndTime() {
return changeEndTime;
}
public void setChangeEndTime(Date changeEndTime) {
this.changeEndTime = changeEndTime;
}
}