Subversion Repositories SmartDukaan

Rev

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

Rev 9280 Rev 9846
Line 1... Line 1...
1
package in.shop2020.metamodel.util;
1
package in.shop2020.metamodel.util;
2
 
2
 
3
public class ItemPojo {
3
public class ItemPojo {
4
	private double sellingPrice;
4
	private Double sellingPrice;
5
	private double mrp;
5
	private Double mrp;
6
	private long id;
6
	private Long id;
7
	private String color;
7
	private String color;
8
	private double minEmi;
8
	private Double minEmi;
-
 
9
	private String buttonText; 
9
	
10
	
10
	
11
	
11
	public double getSellingPrice() {
12
	public double getSellingPrice() {
12
		return sellingPrice;
13
		return sellingPrice;
13
	}
14
	}
Line 42... Line 43...
42
		this.minEmi = minEmi;
43
		this.minEmi = minEmi;
43
	}
44
	}
44
	public double getMinEmi() {
45
	public double getMinEmi() {
45
		return minEmi;
46
		return minEmi;
46
	}
47
	}
-
 
48
	public void setButtonText(String buttonText) {
-
 
49
		this.buttonText = buttonText;
-
 
50
	}
-
 
51
	public String getButtonText() {
-
 
52
		return buttonText;
-
 
53
	}
47
}
54
}