Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5432 amar.kumar 1
package in.shop2020.user.domain;
2
 
3
public class Coupon {
4
 
5
	private long id;
6
	private String coupon_code;
7
//	private Promotion promotion_id;
8
	private String arguments;
9
 
10
 
11
	public long getId() {
12
		return id;
13
	}
14
	public void setId(long id) {
15
		this.id = id;
16
	}
17
	public String getCoupon_code() {
18
		return coupon_code;
19
	}
20
	public void setCoupon_code(String coupon_code) {
21
		this.coupon_code = coupon_code;
22
	}
23
//	public Promotion getPromotion_id() {
24
//		return promotion_id;
25
//	}
26
//	public void setPromotion_id(Promotion promotion_id) {
27
//		this.promotion_id = promotion_id;
28
//	}
29
	public String getArguments() {
30
		return arguments;
31
	}
32
	public void setArguments(String arguments) {
33
		this.arguments = arguments;
34
	}
35
 
36
 
37
}