Subversion Repositories SmartDukaan

Rev

Rev 29064 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 29064 Rev 29766
Line 47... Line 47...
47
	private LocalDateTime pendingCreateTimestamp;
47
	private LocalDateTime pendingCreateTimestamp;
48
	
48
	
49
	@Column(name="na_Comment")
49
	@Column(name="na_Comment")
50
	private String na_Comment;
50
	private String na_Comment;
51
	
51
	
-
 
52
	@Column(name="gen_comment")
-
 
53
	private String genComment;
-
 
54
	
52
	@Column(name="pni_service_comment")
55
	@Column(name="pni_service_comment")
53
	private String partnerNotInterestedServiceComment;
56
	private String partnerNotInterestedServiceComment;
54
 
57
 
55
	public int getId() {
58
	public int getId() {
56
		return id;
59
		return id;
Line 124... Line 127...
124
 
127
 
125
	public void setNa_Comment(String na_Comment) {
128
	public void setNa_Comment(String na_Comment) {
126
		this.na_Comment = na_Comment;
129
		this.na_Comment = na_Comment;
127
	}
130
	}
128
 
131
 
-
 
132
	public String getGenComment() {
-
 
133
		return genComment;
-
 
134
	}
-
 
135
 
-
 
136
	public void setGenComment(String genComment) {
-
 
137
		this.genComment = genComment;
-
 
138
	}
-
 
139
 
129
	@Override
140
	@Override
130
	public int hashCode() {
141
	public int hashCode() {
131
		final int prime = 31;
142
		final int prime = 31;
132
		int result = 1;
143
		int result = 1;
133
		result = prime * result + ((applicableType == null) ? 0 : applicableType.hashCode());
144
		result = prime * result + ((applicableType == null) ? 0 : applicableType.hashCode());
134
		result = prime * result + ((code == null) ? 0 : code.hashCode());
145
		result = prime * result + ((code == null) ? 0 : code.hashCode());
-
 
146
		result = prime * result + ((createTimestamp == null) ? 0 : createTimestamp.hashCode());
135
		result = prime * result + fofoId;
147
		result = prime * result + fofoId;
-
 
148
		result = prime * result + ((genComment == null) ? 0 : genComment.hashCode());
136
		result = prime * result + id;
149
		result = prime * result + id;
137
		result = prime * result + ((na_Comment == null) ? 0 : na_Comment.hashCode());
150
		result = prime * result + ((na_Comment == null) ? 0 : na_Comment.hashCode());
-
 
151
		result = prime * result
-
 
152
				+ ((partnerNotInterestedServiceComment == null) ? 0 : partnerNotInterestedServiceComment.hashCode());
-
 
153
		result = prime * result + ((pendingCreateTimestamp == null) ? 0 : pendingCreateTimestamp.hashCode());
138
		result = prime * result + serviceId;
154
		result = prime * result + serviceId;
139
		return result;
155
		return result;
140
	}
156
	}
141
 
157
 
142
	@Override
158
	@Override
Line 153... Line 169...
153
		if (code == null) {
169
		if (code == null) {
154
			if (other.code != null)
170
			if (other.code != null)
155
				return false;
171
				return false;
156
		} else if (!code.equals(other.code))
172
		} else if (!code.equals(other.code))
157
			return false;
173
			return false;
-
 
174
		if (createTimestamp == null) {
-
 
175
			if (other.createTimestamp != null)
-
 
176
				return false;
-
 
177
		} else if (!createTimestamp.equals(other.createTimestamp))
-
 
178
			return false;
158
		if (fofoId != other.fofoId)
179
		if (fofoId != other.fofoId)
159
			return false;
180
			return false;
-
 
181
		if (genComment == null) {
-
 
182
			if (other.genComment != null)
-
 
183
				return false;
-
 
184
		} else if (!genComment.equals(other.genComment))
-
 
185
			return false;
160
		if (id != other.id)
186
		if (id != other.id)
161
			return false;
187
			return false;
162
		if (na_Comment == null) {
188
		if (na_Comment == null) {
163
			if (other.na_Comment != null)
189
			if (other.na_Comment != null)
164
				return false;
190
				return false;
165
		} else if (!na_Comment.equals(other.na_Comment))
191
		} else if (!na_Comment.equals(other.na_Comment))
166
			return false;
192
			return false;
-
 
193
		if (partnerNotInterestedServiceComment == null) {
-
 
194
			if (other.partnerNotInterestedServiceComment != null)
-
 
195
				return false;
-
 
196
		} else if (!partnerNotInterestedServiceComment.equals(other.partnerNotInterestedServiceComment))
-
 
197
			return false;
-
 
198
		if (pendingCreateTimestamp == null) {
-
 
199
			if (other.pendingCreateTimestamp != null)
-
 
200
				return false;
-
 
201
		} else if (!pendingCreateTimestamp.equals(other.pendingCreateTimestamp))
-
 
202
			return false;
167
		if (serviceId != other.serviceId)
203
		if (serviceId != other.serviceId)
168
			return false;
204
			return false;
169
		return true;
205
		return true;
170
	}
206
	}
171
 
207