Subversion Repositories SmartDukaan

Rev

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

Rev 29055 Rev 29064
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 partnerNotInterestedServiceComment;
34
	private String fofoCode;
35
	private String fofoCode;
35
	private LocalDateTime fofoactiveTimeStamp;
36
	private LocalDateTime fofoactiveTimeStamp;
36
	private LocalDateTime createTimestamp;
37
	private LocalDateTime createTimestamp;
37
	private LocalDateTime deploymentDate;
38
	private LocalDateTime deploymentDate;
38
	private LocalDateTime payDate;
39
	private LocalDateTime payDate;
Line 331... Line 332...
331
	}
332
	}
332
 
333
 
333
	public void setPsPendingCreateTimestamp(LocalDateTime psPendingCreateTimestamp) {
334
	public void setPsPendingCreateTimestamp(LocalDateTime psPendingCreateTimestamp) {
334
		this.psPendingCreateTimestamp = psPendingCreateTimestamp;
335
		this.psPendingCreateTimestamp = psPendingCreateTimestamp;
335
	}
336
	}
-
 
337
	
-
 
338
	
-
 
339
 
-
 
340
	public String getPartnerNotInterestedServiceComment() {
-
 
341
		return partnerNotInterestedServiceComment;
-
 
342
	}
-
 
343
 
-
 
344
	public void setPartnerNotInterestedServiceComment(String partnerNotInterestedServiceComment) {
-
 
345
		this.partnerNotInterestedServiceComment = partnerNotInterestedServiceComment;
-
 
346
	}
336
 
347
 
337
	@Override
348
	@Override
338
	public String toString() {
349
	public String toString() {
339
		return "FinanceServicesModel [fofoId=" + fofoId + ", partnerStatusType=" + partnerStatusType
350
		return "FinanceServicesModel [fofoId=" + fofoId + ", partnerStatusType=" + partnerStatusType
340
				+ ", applicableType=" + applicableType + ", active=" + active + ", brandServiceId=" + brandServiceId
351
				+ ", applicableType=" + applicableType + ", active=" + active + ", brandServiceId=" + brandServiceId
Line 349... Line 360...
349
 
360
 
350
	public FinanceServicesModel(int fofoId, PartnerStatusType partnerStatusType, ApplicableServiceType applicableType,
361
	public FinanceServicesModel(int fofoId, PartnerStatusType partnerStatusType, ApplicableServiceType applicableType,
351
			boolean active, int brandServiceId, String pbsNaComment, String pbsPartnerStatusComment, int serviceId,
362
			boolean active, int brandServiceId, String pbsNaComment, String pbsPartnerStatusComment, int serviceId,
352
			String brand, String name, String code, ApplicableServiceType serviceApplicableType,
363
			String brand, String name, String code, ApplicableServiceType serviceApplicableType,
353
			LocalDateTime serviceCodeCreateTimestamp, LocalDateTime psPendingCreateTimestamp, String psNaComment,
364
			LocalDateTime serviceCodeCreateTimestamp, LocalDateTime psPendingCreateTimestamp, String psNaComment,
354
			String fofoCode, LocalDateTime fofoactiveTimeStamp, LocalDateTime createTimestamp) {
365
			String partnerNotInterestedServiceComment, String fofoCode, LocalDateTime fofoactiveTimeStamp,
-
 
366
			LocalDateTime createTimestamp) {
355
		super();
367
		super();
356
		this.fofoId = fofoId;
368
		this.fofoId = fofoId;
357
		this.partnerStatusType = partnerStatusType;
369
		this.partnerStatusType = partnerStatusType;
358
		this.applicableType = applicableType;
370
		this.applicableType = applicableType;
359
		this.active = active;
371
		this.active = active;
Line 366... Line 378...
366
		this.code = code;
378
		this.code = code;
367
		this.serviceApplicableType = serviceApplicableType;
379
		this.serviceApplicableType = serviceApplicableType;
368
		this.serviceCodeCreateTimestamp = serviceCodeCreateTimestamp;
380
		this.serviceCodeCreateTimestamp = serviceCodeCreateTimestamp;
369
		this.psPendingCreateTimestamp = psPendingCreateTimestamp;
381
		this.psPendingCreateTimestamp = psPendingCreateTimestamp;
370
		this.psNaComment = psNaComment;
382
		this.psNaComment = psNaComment;
-
 
383
		this.partnerNotInterestedServiceComment = partnerNotInterestedServiceComment;
371
		this.fofoCode = fofoCode;
384
		this.fofoCode = fofoCode;
372
		this.fofoactiveTimeStamp = fofoactiveTimeStamp;
385
		this.fofoactiveTimeStamp = fofoactiveTimeStamp;
373
		this.createTimestamp = createTimestamp;
386
		this.createTimestamp = createTimestamp;
374
	}
387
	}
375
 
388
 
376
	public FinanceServicesModel(int fofoId, PartnerStatusType partnerStatusType, ApplicableServiceType applicableType,
-
 
377
			boolean active, int brandServiceId, String pbsNaComment, String pbsPartnerStatusComment, int serviceId,
-
 
378
			String brand, String name, String code, ApplicableServiceType serviceApplicableType,
-
 
379
			LocalDateTime serviceCodeCreateTimestamp, String psNaComment, String fofoCode,
-
 
380
			LocalDateTime fofoactiveTimeStamp, LocalDateTime createTimestamp) {
-
 
381
		super();
-
 
382
		this.fofoId = fofoId;
-
 
383
		this.partnerStatusType = partnerStatusType;
-
 
384
		this.applicableType = applicableType;
-
 
385
		this.active = active;
-
 
386
		this.brandServiceId = brandServiceId;
-
 
387
		this.pbsNaComment = pbsNaComment;
-
 
388
		this.pbsPartnerStatusComment = pbsPartnerStatusComment;
-
 
389
		this.serviceId = serviceId;
-
 
390
		this.brand = brand;
-
 
391
		this.name = name;
-
 
392
		this.code = code;
-
 
393
		this.serviceApplicableType = serviceApplicableType;
-
 
394
		this.serviceCodeCreateTimestamp = serviceCodeCreateTimestamp;
-
 
395
		this.psNaComment = psNaComment;
-
 
396
		this.fofoCode = fofoCode;
-
 
397
		this.fofoactiveTimeStamp = fofoactiveTimeStamp;
-
 
398
		this.createTimestamp = createTimestamp;
-
 
399
	}
389
	
400
 
-
 
401
}
390
}
402
391