Subversion Repositories SmartDukaan

Rev

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

Rev 29100 Rev 29767
Line 29... Line 29...
29
	private ApplicableServiceType serviceApplicableType;
29
	private ApplicableServiceType serviceApplicableType;
30
 
30
 
31
	private LocalDateTime serviceCodeCreateTimestamp;
31
	private LocalDateTime serviceCodeCreateTimestamp;
32
	private LocalDateTime psPendingCreateTimestamp;
32
	private LocalDateTime psPendingCreateTimestamp;
33
	private String psNaComment;
33
	private String psNaComment;
-
 
34
	private String psGenComment;
34
	private String partnerNotInterestedServiceComment;
35
	private String partnerNotInterestedServiceComment;
35
	private String fofoCode;
36
	private String fofoCode;
36
	private LocalDateTime fofoactiveTimeStamp;
37
	private LocalDateTime fofoactiveTimeStamp;
37
	private LocalDateTime createTimestamp;
38
	private LocalDateTime createTimestamp;
-
 
39
	private String documentsCompleted;
38
	private LocalDateTime deploymentDate;
40
	private LocalDateTime deploymentDate;
39
	private LocalDateTime payDate;
41
	private LocalDateTime payDate;
40
 
42
 
41
	private static final Logger LOGGER = LogManager.getLogger(FinanceServicesModel.class);
43
	private static final Logger LOGGER = LogManager.getLogger(FinanceServicesModel.class);
42
 
44
 
Line 333... Line 335...
333
	}
335
	}
334
	
336
	
335
	
337
	
336
	
338
	
337
 
339
 
-
 
340
	public String getPsGenComment() {
-
 
341
		return psGenComment;
-
 
342
	}
-
 
343
 
-
 
344
	public void setPsGenComment(String psGenComment) {
-
 
345
		this.psGenComment = psGenComment;
-
 
346
	}
-
 
347
 
-
 
348
	public String getDocumentsCompleted() {
-
 
349
		return documentsCompleted;
-
 
350
	}
-
 
351
 
-
 
352
	public void setDocumentsCompleted(String documentsCompleted) {
-
 
353
		this.documentsCompleted = documentsCompleted;
-
 
354
	}
-
 
355
 
338
	public LocalDateTime getPsPendingCreateTimestamp() {
356
	public LocalDateTime getPsPendingCreateTimestamp() {
339
		return psPendingCreateTimestamp;
357
		return psPendingCreateTimestamp;
340
	}
358
	}
341
 
359
 
342
	public void setPsPendingCreateTimestamp(LocalDateTime psPendingCreateTimestamp) {
360
	public void setPsPendingCreateTimestamp(LocalDateTime psPendingCreateTimestamp) {
Line 368... Line 386...
368
 
386
 
369
	public FinanceServicesModel(int fofoId, PartnerStatusType partnerStatusType, ApplicableServiceType applicableType,
387
	public FinanceServicesModel(int fofoId, PartnerStatusType partnerStatusType, ApplicableServiceType applicableType,
370
			boolean active, int brandServiceId, String pbsNaComment, String pbsPartnerStatusComment, int serviceId,
388
			boolean active, int brandServiceId, String pbsNaComment, String pbsPartnerStatusComment, int serviceId,
371
			String brand, String name, String code, ApplicableServiceType serviceApplicableType,
389
			String brand, String name, String code, ApplicableServiceType serviceApplicableType,
372
			LocalDateTime serviceCodeCreateTimestamp, LocalDateTime psPendingCreateTimestamp, String psNaComment,
390
			LocalDateTime serviceCodeCreateTimestamp, LocalDateTime psPendingCreateTimestamp, String psNaComment,
373
			String partnerNotInterestedServiceComment, String fofoCode, LocalDateTime fofoactiveTimeStamp,
391
			String psGenComment, String partnerNotInterestedServiceComment, String fofoCode,
374
			LocalDateTime createTimestamp) {
392
			LocalDateTime fofoactiveTimeStamp, LocalDateTime createTimestamp, String documentsCompleted) {
375
		super();
393
		super();
376
		this.fofoId = fofoId;
394
		this.fofoId = fofoId;
377
		this.partnerStatusType = partnerStatusType;
395
		this.partnerStatusType = partnerStatusType;
378
		this.applicableType = applicableType;
396
		this.applicableType = applicableType;
379
		this.active = active;
397
		this.active = active;
Line 386... Line 404...
386
		this.code = code;
404
		this.code = code;
387
		this.serviceApplicableType = serviceApplicableType;
405
		this.serviceApplicableType = serviceApplicableType;
388
		this.serviceCodeCreateTimestamp = serviceCodeCreateTimestamp;
406
		this.serviceCodeCreateTimestamp = serviceCodeCreateTimestamp;
389
		this.psPendingCreateTimestamp = psPendingCreateTimestamp;
407
		this.psPendingCreateTimestamp = psPendingCreateTimestamp;
390
		this.psNaComment = psNaComment;
408
		this.psNaComment = psNaComment;
-
 
409
		this.psGenComment = psGenComment;
391
		this.partnerNotInterestedServiceComment = partnerNotInterestedServiceComment;
410
		this.partnerNotInterestedServiceComment = partnerNotInterestedServiceComment;
392
		this.fofoCode = fofoCode;
411
		this.fofoCode = fofoCode;
393
		this.fofoactiveTimeStamp = fofoactiveTimeStamp;
412
		this.fofoactiveTimeStamp = fofoactiveTimeStamp;
394
		this.createTimestamp = createTimestamp;
413
		this.createTimestamp = createTimestamp;
-
 
414
		this.documentsCompleted = documentsCompleted;
395
	}
415
	}
-
 
416
	
396
 
417
 
397
	
418
	
398
}
419
}
399
420