Subversion Repositories SmartDukaan

Rev

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

Rev 28977 Rev 29052
Line 30... Line 30...
30
	private ApplicableServiceType serviceApplicableType;
30
	private ApplicableServiceType serviceApplicableType;
31
	
31
	
32
	private LocalDateTime  serviceCodeCreateTimestamp;
32
	private LocalDateTime  serviceCodeCreateTimestamp;
33
	private String psNaComment;
33
	private String psNaComment;
34
	private String fofoCode;
34
	private String fofoCode;
-
 
35
	private LocalDateTime fofoactiveTimeStamp;
35
	private LocalDateTime createTimestamp;
36
	private LocalDateTime createTimestamp;
36
	private LocalDateTime deploymentDate;
37
	private LocalDateTime deploymentDate;
37
	private LocalDateTime payDate;
38
	private LocalDateTime payDate;
38
 
39
 
39
	private static final Logger LOGGER = LogManager.getLogger(FinanceServicesModel.class);
40
	private static final Logger LOGGER = LogManager.getLogger(FinanceServicesModel.class);
Line 324... Line 325...
324
		this.serviceCodeCreateTimestamp = serviceCodeCreateTimestamp;
325
		this.serviceCodeCreateTimestamp = serviceCodeCreateTimestamp;
325
	}
326
	}
326
 
327
 
327
	
328
	
328
 
329
 
-
 
330
	public LocalDateTime getFofoactiveTimeStamp() {
-
 
331
		return fofoactiveTimeStamp;
-
 
332
	}
-
 
333
 
-
 
334
 
-
 
335
	public void setFofoactiveTimeStamp(LocalDateTime fofoactiveTimeStamp) {
-
 
336
		this.fofoactiveTimeStamp = fofoactiveTimeStamp;
-
 
337
	}
-
 
338
 
-
 
339
 
329
	@Override
340
	@Override
330
	public String toString() {
341
	public String toString() {
331
		return "FinanceServicesModel [fofoId=" + fofoId + ", partnerStatusType=" + partnerStatusType
342
		return "FinanceServicesModel [fofoId=" + fofoId + ", partnerStatusType=" + partnerStatusType
332
				+ ", applicableType=" + applicableType + ", active=" + active + ", brandServiceId=" + brandServiceId
343
				+ ", applicableType=" + applicableType + ", active=" + active + ", brandServiceId=" + brandServiceId
333
				+ ", pbsNaComment=" + pbsNaComment + ", pbsPartnerStatusComment=" + pbsPartnerStatusComment
344
				+ ", pbsNaComment=" + pbsNaComment + ", pbsPartnerStatusComment=" + pbsPartnerStatusComment
334
				+ ", serviceId=" + serviceId + ", brand=" + brand + ", name=" + name + ", code=" + code
345
				+ ", serviceId=" + serviceId + ", brand=" + brand + ", name=" + name + ", code=" + code
335
				+ ", serviceApplicableType=" + serviceApplicableType + ", serviceCodeCreateTimestamp="
346
				+ ", serviceApplicableType=" + serviceApplicableType + ", serviceCodeCreateTimestamp="
336
				+ serviceCodeCreateTimestamp + ", psNa_Comment=" + psNaComment + ", fofoCode=" + fofoCode
347
				+ serviceCodeCreateTimestamp + ", psNaComment=" + psNaComment + ", fofoCode=" + fofoCode
337
				+ ", createTimestamp=" + createTimestamp + ", deploymentDate=" + deploymentDate + ", payDate=" + payDate
348
				+ ", fofoactiveTimeStamp=" + fofoactiveTimeStamp + ", createTimestamp=" + createTimestamp
338
				+ "]";
349
				+ ", deploymentDate=" + deploymentDate + ", payDate=" + payDate + "]";
339
	}
350
	}
340
 
351
 
341
 
352
 
342
	public FinanceServicesModel(int fofoId, PartnerStatusType partnerStatusType, ApplicableServiceType applicableType,
353
	public FinanceServicesModel(int fofoId, PartnerStatusType partnerStatusType, ApplicableServiceType applicableType,
343
			boolean active, int brandServiceId, String pbsNaComment, String pbsPartnerStatusComment, int serviceId,
354
			boolean active, int brandServiceId, String pbsNaComment, String pbsPartnerStatusComment, int serviceId,
344
			String brand, String name, String code, ApplicableServiceType serviceApplicableType,
355
			String brand, String name, String code, ApplicableServiceType serviceApplicableType,
345
			LocalDateTime serviceCodeCreateTimestamp, String psNa_Comment, String fofoCode,
356
			LocalDateTime serviceCodeCreateTimestamp, String psNaComment, String fofoCode,
346
			LocalDateTime createTimestamp) {
357
			LocalDateTime fofoactiveTimeStamp, LocalDateTime createTimestamp) {
347
		super();
358
		super();
348
		this.fofoId = fofoId;
359
		this.fofoId = fofoId;
349
		this.partnerStatusType = partnerStatusType;
360
		this.partnerStatusType = partnerStatusType;
350
		this.applicableType = applicableType;
361
		this.applicableType = applicableType;
351
		this.active = active;
362
		this.active = active;
Line 356... Line 367...
356
		this.brand = brand;
367
		this.brand = brand;
357
		this.name = name;
368
		this.name = name;
358
		this.code = code;
369
		this.code = code;
359
		this.serviceApplicableType = serviceApplicableType;
370
		this.serviceApplicableType = serviceApplicableType;
360
		this.serviceCodeCreateTimestamp = serviceCodeCreateTimestamp;
371
		this.serviceCodeCreateTimestamp = serviceCodeCreateTimestamp;
361
		this.psNaComment = psNa_Comment;
372
		this.psNaComment = psNaComment;
362
		this.fofoCode = fofoCode;
373
		this.fofoCode = fofoCode;
-
 
374
		this.fofoactiveTimeStamp = fofoactiveTimeStamp;
363
		this.createTimestamp = createTimestamp;
375
		this.createTimestamp = createTimestamp;
364
	}
376
	}
365
 
377
 
366
 
378
 
367
	
379
	
-
 
380
 
-
 
381
	
368
	
382
	
369
 
383
 
370
}
384
}
371
385