Subversion Repositories SmartDukaan

Rev

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

Rev 26685 Rev 27388
Line 95... Line 95...
95
	@Column
95
	@Column
96
	private boolean cashback;
96
	private boolean cashback;
97
 
97
 
98
	@Transient
98
	@Transient
99
	private Set<Integer> retailerIds = new HashSet<>();
99
	private Set<Integer> retailerIds = new HashSet<>();
-
 
100
	
-
 
101
	@Transient
-
 
102
	private String amountModel;
100
 
103
 
101
	@Column(name="partner_type")
104
	@Column(name="partner_type")
102
	@Enumerated(EnumType.STRING)
105
	@Enumerated(EnumType.STRING)
103
	private PartnerType partnerType;
106
	private PartnerType partnerType;
104
 
107
 
Line 110... Line 113...
110
	}
113
	}
111
 
114
 
112
	public void setId(int id) {
115
	public void setId(int id) {
113
		this.id = id;
116
		this.id = id;
114
	}
117
	}
-
 
118
	
-
 
119
	
-
 
120
 
-
 
121
	public String getAmountModel() {
-
 
122
		return amountModel;
-
 
123
	}
-
 
124
 
-
 
125
	public void setAmountModel(String amountModel) {
-
 
126
		this.amountModel = amountModel;
-
 
127
	}
115
 
128
 
116
	public String getName() {
129
	public String getName() {
117
		return name;
130
		return name;
118
	}
131
	}
119
 
132