Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
35501 ranu 1
package com.spice.profitmandi.dao.model;
2
 
3
import com.spice.profitmandi.dao.enumuration.catalog.AmountType;
4
 
5
public class PayoutSlabModel {
6
 
7
    AmountType amountType;
8
    private int target;
9
    private double value;
10
 
11
    public int getTarget() {
12
        return target;
13
    }
14
 
15
    public void setTarget(int target) {
16
        this.target = target;
17
    }
18
 
19
    public double getValue() {
20
        return value;
21
    }
22
 
23
    public void setValue(double value) {
24
        this.value = value;
25
    }
26
 
27
    public AmountType getAmountType() {
28
        return amountType;
29
    }
30
 
31
    public void setAmountType(AmountType amountType) {
32
        this.amountType = amountType;
33
    }
34
 
35
    @Override
36
    public String toString() {
37
        return "PayoutSlabModel{" +
38
                "target=" + target +
39
                ", value=" + value +
40
                ", amountType=" + amountType +
41
                '}';
42
    }
43
}