Subversion Repositories SmartDukaan

Rev

Rev 35924 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 35924 Rev 36081
Line 1... Line 1...
1
package com.spice.profitmandi.service.offers;
1
package com.spice.profitmandi.service.offers;
2
 
2
 
3
public class PayoutSlab implements Comparable<PayoutSlab> {
3
public class PayoutSlab implements Comparable<PayoutSlab>, java.io.Serializable {
-
 
4
	private static final long serialVersionUID = 1L;
4
	private int id;
5
	private int id;
5
	private int onwardsAmount;
6
	private int onwardsAmount;
6
	private float payoutAmount;
7
	private float payoutAmount;
7
	private boolean selected;
8
	private boolean selected;
8
 
9