Subversion Repositories SmartDukaan

Rev

Rev 21730 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
21409 amit.gupta 1
package com.spice.profitmandi.web.res.order;
2
 
3
 
4
 
5
public class CartLinePojo {
6
 
7
    private long itemId; // required
8
    private String name;
9
    private String color;
10
    private double quantity; // required
11
    private double actualPrice; // required
12
    private double discountedPrice; // required
13
//    private List<Discount> discounts; // required
14
    private boolean isTheftInsuranceAvailable;
15
    private long insurer; // required
16
    private double insuranceAmount; // required
17
    private boolean isDataProtectionAvailable;
18
    private long dataProtectionInsurer; // required
19
    private String dealText;
20
    private double dataProtectionAmount; // required
21
    private String imageUrl; // required
22
 
23
    public long getItemId() {
24
        return itemId;
25
    }
26
    public void setItemId(long itemId) {
27
        this.itemId = itemId;
28
    }
29
    public double getQuantity() {
30
        return quantity;
31
    }
32
    public void setQuantity(double quantity) {
33
        this.quantity = quantity;
34
    }
35
    public double getActualPrice() {
36
        return actualPrice;
37
    }
38
    public void setActualPrice(double actualPrice) {
39
        this.actualPrice = actualPrice;
40
    }
41
    public double getDiscountedPrice() {
42
        return discountedPrice;
43
    }
44
    public void setDiscountedPrice(double discountedPrice) {
45
        this.discountedPrice = discountedPrice;
46
    }
47
    public boolean isTheftInsuranceAvailable() {
48
        return isTheftInsuranceAvailable;
49
    }
50
    public void setTheftInsuranceAvailable(boolean isTheftInsuranceAvailable) {
51
        this.isTheftInsuranceAvailable = isTheftInsuranceAvailable;
52
    }
53
    public long getInsurer() {
54
        return insurer;
55
    }
56
    public void setInsurer(long insurer) {
57
        this.insurer = insurer;
58
    }
59
    public double getInsuranceAmount() {
60
        return insuranceAmount;
61
    }
62
    public void setInsuranceAmount(double insuranceAmount) {
63
        this.insuranceAmount = insuranceAmount;
64
    }
65
    public boolean isDataProtectionAvailable() {
66
        return isDataProtectionAvailable;
67
    }
68
    public void setDataProtectionAvailable(boolean isDataProtectionAvailable) {
69
        this.isDataProtectionAvailable = isDataProtectionAvailable;
70
    }
71
    public long getDataProtectionInsurer() {
72
        return dataProtectionInsurer;
73
    }
74
    public void setDataProtectionInsurer(long dataProtectionInsurer) {
75
        this.dataProtectionInsurer = dataProtectionInsurer;
76
    }
77
    public double getDataProtectionAmount() {
78
        return dataProtectionAmount;
79
    }
80
    public void setDataProtectionAmount(double dataProtectionAmount) {
81
        this.dataProtectionAmount = dataProtectionAmount;
82
    }
83
    public String getName() {
84
        return name;
85
    }
86
    public void setName(String name) {
87
        this.name = name;
88
    }
89
    public String getColor() {
90
        return color;
91
    }
92
    public void setColor(String color) {
93
        this.color = color;
94
    }
95
	public void setImageUrl(String imageUrl) {
96
		this.imageUrl = imageUrl;
97
	}
98
	public String getImageUrl() {
99
		return imageUrl;
100
	}
21413 amit.gupta 101
 
21409 amit.gupta 102
	public void setDealText(String dealText) {
103
		this.dealText = dealText;
104
	}
105
	public String getDealText() {
106
		return dealText;
107
	}
108
}