Subversion Repositories SmartDukaan

Rev

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

Rev 27877 Rev 27918
Line 1... Line 1...
1
package com.spice.profitmandi.dao.model;
1
package com.spice.profitmandi.dao.model;
2
 
2
 
3
import java.util.List;
3
import java.util.List;
4
 
4
 
5
import com.spice.profitmandi.dao.enumuration.catalog.AmountType;
5
import com.spice.profitmandi.dao.enumuration.catalog.AmountType;
6
import com.spice.profitmandi.dao.enumuration.catalog.TargetType;
6
import com.spice.profitmandi.dao.enumuration.catalog.AchievementType;
7
 
7
 
8
public class OfferRowModel {
8
public class OfferRowModel {
9
    private String storeName;
9
    private String storeName;
10
    private int fofoId;
10
    private int fofoId;
11
    private int maxBrandSharePercentage;
11
    private int maxBrandSharePercentage;
Line 16... Line 16...
16
    private double eligibleSale;
16
    private double eligibleSale;
17
    private List<String> pendingImeis;
17
    private List<String> pendingImeis;
18
    private double achievedTarget;
18
    private double achievedTarget;
19
    private double nextTarget;
19
    private double nextTarget;
20
    private int soldValue;
20
    private int soldValue;
21
    private TargetType targetType;
21
    private AchievementType targetType;
22
    private int currentPayoutTarget;
22
    private int currentPayoutTarget;
23
    private int payoutTargetAchieved;
23
    private int payoutTargetAchieved;
24
    private float payoutValue;
24
    private float payoutValue;
25
    private float payoutValueDp;
25
    private float payoutValueDp;
26
    public float getPayoutValueDp() {
26
    public float getPayoutValueDp() {
Line 60... Line 60...
60
 
60
 
61
	public void setSoldValue(int soldValue) {
61
	public void setSoldValue(int soldValue) {
62
		this.soldValue = soldValue;
62
		this.soldValue = soldValue;
63
	}
63
	}
64
 
64
 
65
	public TargetType getTargetType() {
65
	public AchievementType getTargetType() {
66
		return targetType;
66
		return targetType;
67
	}
67
	}
68
 
68
 
69
	public void setTargetType(TargetType targetType) {
69
	public void setTargetType(AchievementType targetType) {
70
		this.targetType = targetType;
70
		this.targetType = targetType;
71
	}
71
	}
72
 
72
 
73
	public AmountType getAmountType() {
73
	public AmountType getAmountType() {
74
		return amountType;
74
		return amountType;