Subversion Repositories SmartDukaan

Rev

Rev 29767 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 29767 Rev 29798
Line 35... Line 35...
35
	private String partnerNotInterestedServiceComment;
35
	private String partnerNotInterestedServiceComment;
36
	private String fofoCode;
36
	private String fofoCode;
37
	private LocalDateTime fofoactiveTimeStamp;
37
	private LocalDateTime fofoactiveTimeStamp;
38
	private LocalDateTime createTimestamp;
38
	private LocalDateTime createTimestamp;
39
	private String documentsCompleted;
39
	private String documentsCompleted;
-
 
40
	
-
 
41
	private LocalDate allFollowupDate;
40
	private LocalDateTime deploymentDate;
42
	private LocalDateTime deploymentDate;
41
	private LocalDateTime payDate;
43
	private LocalDateTime payDate;
42
 
44
 
43
	private static final Logger LOGGER = LogManager.getLogger(FinanceServicesModel.class);
45
	private static final Logger LOGGER = LogManager.getLogger(FinanceServicesModel.class);
44
 
46
 
Line 361... Line 363...
361
		this.psPendingCreateTimestamp = psPendingCreateTimestamp;
363
		this.psPendingCreateTimestamp = psPendingCreateTimestamp;
362
	}
364
	}
363
	
365
	
364
	
366
	
365
 
367
 
-
 
368
	public LocalDate getAllFollowupDate() {
-
 
369
		return allFollowupDate;
-
 
370
	}
-
 
371
 
-
 
372
	public void setAllFollowupDate(LocalDate allFollowupDate) {
-
 
373
		this.allFollowupDate = allFollowupDate;
-
 
374
	}
-
 
375
 
366
	public String getPartnerNotInterestedServiceComment() {
376
	public String getPartnerNotInterestedServiceComment() {
367
		return partnerNotInterestedServiceComment;
377
		return partnerNotInterestedServiceComment;
368
	}
378
	}
369
 
379
 
370
	public void setPartnerNotInterestedServiceComment(String partnerNotInterestedServiceComment) {
380
	public void setPartnerNotInterestedServiceComment(String partnerNotInterestedServiceComment) {
371
		this.partnerNotInterestedServiceComment = partnerNotInterestedServiceComment;
381
		this.partnerNotInterestedServiceComment = partnerNotInterestedServiceComment;
372
	}
382
	}
373
 
383
 
-
 
384
	
-
 
385
 
374
	@Override
386
	@Override
375
	public String toString() {
387
	public String toString() {
376
		return "FinanceServicesModel [fofoId=" + fofoId + ", partnerStatusType=" + partnerStatusType
388
		return "FinanceServicesModel [fofoId=" + fofoId + ", partnerStatusType=" + partnerStatusType
377
				+ ", applicableType=" + applicableType + ", active=" + active + ", brandServiceId=" + brandServiceId
389
				+ ", applicableType=" + applicableType + ", active=" + active + ", brandServiceId=" + brandServiceId
378
				+ ", pbsNaComment=" + pbsNaComment + ", pbsPartnerStatusComment=" + pbsPartnerStatusComment
390
				+ ", pbsNaComment=" + pbsNaComment + ", pbsPartnerStatusComment=" + pbsPartnerStatusComment
379
				+ ", serviceId=" + serviceId + ", brand=" + brand + ", name=" + name + ", code=" + code
391
				+ ", serviceId=" + serviceId + ", brand=" + brand + ", name=" + name + ", code=" + code
380
				+ ", serviceApplicableType=" + serviceApplicableType + ", serviceCodeCreateTimestamp="
392
				+ ", serviceApplicableType=" + serviceApplicableType + ", serviceCodeCreateTimestamp="
381
				+ serviceCodeCreateTimestamp + ", psPendingCreateTimestamp=" + psPendingCreateTimestamp
393
				+ serviceCodeCreateTimestamp + ", psPendingCreateTimestamp=" + psPendingCreateTimestamp
382
				+ ", psNaComment=" + psNaComment + ", fofoCode=" + fofoCode + ", fofoactiveTimeStamp="
394
				+ ", psNaComment=" + psNaComment + ", psGenComment=" + psGenComment
-
 
395
				+ ", partnerNotInterestedServiceComment=" + partnerNotInterestedServiceComment + ", fofoCode="
383
				+ fofoactiveTimeStamp + ", createTimestamp=" + createTimestamp + ", deploymentDate=" + deploymentDate
396
				+ fofoCode + ", fofoactiveTimeStamp=" + fofoactiveTimeStamp + ", createTimestamp=" + createTimestamp
384
				+ ", payDate=" + payDate + "]";
397
				+ ", documentsCompleted=" + documentsCompleted + ", allFollowupDate=" + allFollowupDate + "]";
385
	}
398
	}
386
 
399
 
387
	public FinanceServicesModel(int fofoId, PartnerStatusType partnerStatusType, ApplicableServiceType applicableType,
400
	public FinanceServicesModel(int fofoId, PartnerStatusType partnerStatusType, ApplicableServiceType applicableType,
388
			boolean active, int brandServiceId, String pbsNaComment, String pbsPartnerStatusComment, int serviceId,
401
			boolean active, int brandServiceId, String pbsNaComment, String pbsPartnerStatusComment, int serviceId,
389
			String brand, String name, String code, ApplicableServiceType serviceApplicableType,
402
			String brand, String name, String code, ApplicableServiceType serviceApplicableType,
390
			LocalDateTime serviceCodeCreateTimestamp, LocalDateTime psPendingCreateTimestamp, String psNaComment,
403
			LocalDateTime serviceCodeCreateTimestamp, LocalDateTime psPendingCreateTimestamp, String psNaComment,
391
			String psGenComment, String partnerNotInterestedServiceComment, String fofoCode,
404
			String psGenComment, String partnerNotInterestedServiceComment, String fofoCode,
392
			LocalDateTime fofoactiveTimeStamp, LocalDateTime createTimestamp, String documentsCompleted) {
405
			LocalDateTime fofoactiveTimeStamp, LocalDateTime createTimestamp, String documentsCompleted,
-
 
406
			LocalDate allFollowupDate) {
393
		super();
407
		super();
394
		this.fofoId = fofoId;
408
		this.fofoId = fofoId;
395
		this.partnerStatusType = partnerStatusType;
409
		this.partnerStatusType = partnerStatusType;
396
		this.applicableType = applicableType;
410
		this.applicableType = applicableType;
397
		this.active = active;
411
		this.active = active;
Line 410... Line 424...
410
		this.partnerNotInterestedServiceComment = partnerNotInterestedServiceComment;
424
		this.partnerNotInterestedServiceComment = partnerNotInterestedServiceComment;
411
		this.fofoCode = fofoCode;
425
		this.fofoCode = fofoCode;
412
		this.fofoactiveTimeStamp = fofoactiveTimeStamp;
426
		this.fofoactiveTimeStamp = fofoactiveTimeStamp;
413
		this.createTimestamp = createTimestamp;
427
		this.createTimestamp = createTimestamp;
414
		this.documentsCompleted = documentsCompleted;
428
		this.documentsCompleted = documentsCompleted;
-
 
429
		this.allFollowupDate = allFollowupDate;
415
	}
430
	}
-
 
431
 
416
	
432
 
417
 
433
 
418
	
434
	
419
}
435
}
420
436