Subversion Repositories SmartDukaan

Rev

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

Rev 25726 Rev 25778
Line 1... Line 1...
1
package com.spice.profitmandi.common.model;
1
package com.spice.profitmandi.common.model;
2
 
2
 
-
 
3
import java.time.LocalDateTime;
-
 
4
 
3
public class InsuranceModel {
5
public class InsuranceModel {
4
	private String brand;
6
	private String brand;
5
	private String color;
7
	private String color;
-
 
8
	private String ram;
-
 
9
	private String memory;
-
 
10
	private LocalDateTime mfgDate;
-
 
11
	
-
 
12
	
-
 
13
	public String getRam() {
-
 
14
		return ram;
-
 
15
	}
-
 
16
	public void setRam(String ram) {
-
 
17
		this.ram = ram;
-
 
18
	}
-
 
19
	public String getMemory() {
-
 
20
		return memory;
-
 
21
	}
-
 
22
	public void setMemory(String memory) {
-
 
23
		this.memory = memory;
-
 
24
	}
-
 
25
	public LocalDateTime getMfgDate() {
-
 
26
		return mfgDate;
-
 
27
	}
-
 
28
	public void setMfgDate(LocalDateTime mfgDate) {
-
 
29
		this.mfgDate = mfgDate;
-
 
30
	}
6
	public String getColor() {
31
	public String getColor() {
7
		return color;
32
		return color;
8
	}
33
	}
9
	public void setColor(String color) {
34
	public void setColor(String color) {
10
		this.color = color;
35
		this.color = color;
Line 28... Line 53...
28
	}
53
	}
29
	private String providerName;
54
	private String providerName;
30
	private String providerId;
55
	private String providerId;
31
	private String underWriterName;
56
	private String underWriterName;
32
	private String underWriterId;
57
	private String underWriterId;
-
 
58
	
-
 
59
	
33
	@Override
60
	@Override
34
	public String toString() {
61
	public String toString() {
35
		return "InsuranceModel [brand=" + brand + ", color=" + color + ", serialNumber=" + serialNumber + ", modelName="
62
		return "InsuranceModel [brand=" + brand + ", color=" + color + ", ram=" + ram + ", memory=" + memory
-
 
63
				+ ", mfgDate=" + mfgDate + ", serialNumber=" + serialNumber + ", modelName=" + modelName
36
				+ modelName + ", insuranceAmount=" + insuranceAmount + ", insuranceId=" + insuranceId
64
				+ ", insuranceAmount=" + insuranceAmount + ", insuranceId=" + insuranceId + ", deviceSellingPrice="
37
				+ ", deviceSellingPrice=" + deviceSellingPrice + ", providerName=" + providerName + ", providerId="
65
				+ deviceSellingPrice + ", providerName=" + providerName + ", providerId=" + providerId
38
				+ providerId + ", underWriterName=" + underWriterName + ", underWriterId=" + underWriterId + "]";
66
				+ ", underWriterName=" + underWriterName + ", underWriterId=" + underWriterId + "]";
39
	}
67
	}
40
	public String getBrand() {
68
	public String getBrand() {
41
		return brand;
69
		return brand;
42
	}
70
	}
43
	public void setBrand(String brand) {
71
	public void setBrand(String brand) {