Subversion Repositories SmartDukaan

Rev

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

Rev 29055 Rev 29064
Line 46... Line 46...
46
	@Column(name="pending_create_timestamp")
46
	@Column(name="pending_create_timestamp")
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
	
-
 
52
	@Column(name="pni_service_comment")
-
 
53
	private String partnerNotInterestedServiceComment;
51
 
54
 
52
	public int getId() {
55
	public int getId() {
53
		return id;
56
		return id;
54
	}
57
	}
55
 
58
 
Line 65... Line 68...
65
		this.fofoId = fofoId;
68
		this.fofoId = fofoId;
66
	}
69
	}
67
	
70
	
68
	
71
	
69
 
72
 
-
 
73
	public String getPartnerNotInterestedServiceComment() {
-
 
74
		return partnerNotInterestedServiceComment;
-
 
75
	}
-
 
76
 
-
 
77
	public void setPartnerNotInterestedServiceComment(String partnerNotInterestedServiceComment) {
-
 
78
		this.partnerNotInterestedServiceComment = partnerNotInterestedServiceComment;
-
 
79
	}
-
 
80
 
70
	public LocalDateTime getPendingCreateTimestamp() {
81
	public LocalDateTime getPendingCreateTimestamp() {
71
		return pendingCreateTimestamp;
82
		return pendingCreateTimestamp;
72
	}
83
	}
73
 
84
 
74
	public void setPendingCreateTimestamp(LocalDateTime pendingCreateTimestamp) {
85
	public void setPendingCreateTimestamp(LocalDateTime pendingCreateTimestamp) {
Line 159... Line 170...
159
	}
170
	}
160
 
171
 
161
	@Override
172
	@Override
162
	public String toString() {
173
	public String toString() {
163
		return "PartnerService [id=" + id + ", fofoId=" + fofoId + ", serviceId=" + serviceId + ", applicableType="
174
		return "PartnerService [id=" + id + ", fofoId=" + fofoId + ", serviceId=" + serviceId + ", applicableType="
164
				+ applicableType + ", code=" + code + ", createTimestamp=" + createTimestamp + ", na_Comment="
175
				+ applicableType + ", code=" + code + ", createTimestamp=" + createTimestamp
-
 
176
				+ ", pendingCreateTimestamp=" + pendingCreateTimestamp + ", na_Comment=" + na_Comment
165
				+ na_Comment + "]";
177
				+ ", partnerNotInterestedServiceComment=" + partnerNotInterestedServiceComment + "]";
166
	}
178
	}
167
	
179
	
168
 
180
 
169
	
181
	
170
	
182