Subversion Repositories SmartDukaan

Rev

Rev 32227 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
32044 tejbeer 1
package com.spice.profitmandi.dao.model;
2
 
3
public class RetailerFilterModel {
4
    private boolean credit;
5
    private boolean billing;
6
    private Integer investmentPct;
7
    private Integer secondaryDays;
8
    private Integer tertiaryDays;
9
    private Integer mtdsPct;
10
    private Integer mtdtPct;
11
 
12
    public boolean isCredit() {
13
        return credit;
14
    }
15
 
16
    public void setCredit(boolean credit) {
17
        this.credit = credit;
18
    }
19
 
20
    public boolean isBilling() {
21
        return billing;
22
    }
23
 
24
    public void setBilling(boolean billing) {
25
        this.billing = billing;
26
    }
27
 
28
    public Integer getInvestmentPct() {
29
        return investmentPct;
30
    }
31
 
32
    public void setInvestmentPct(Integer investmentPct) {
33
        this.investmentPct = investmentPct;
34
    }
35
 
36
    public Integer getSecondaryDays() {
37
        return secondaryDays;
38
    }
39
 
40
    public void setSecondaryDays(Integer secondaryDays) {
41
        this.secondaryDays = secondaryDays;
42
    }
43
 
44
    public Integer getTertiaryDays() {
45
        return tertiaryDays;
46
    }
47
 
48
    public void setTertiaryDays(Integer tertiaryDays) {
49
        this.tertiaryDays = tertiaryDays;
50
    }
51
 
52
    public Integer getMtdsPct() {
53
        return mtdsPct;
54
    }
55
 
56
    public void setMtdsPct(Integer mtdsPct) {
57
        this.mtdsPct = mtdsPct;
58
    }
59
 
60
    public Integer getMtdtPct() {
61
        return mtdtPct;
62
    }
63
 
64
    public void setMtdtPct(Integer mtdtPct) {
65
        this.mtdtPct = mtdtPct;
66
    }
67
 
68
    @Override
69
    public String toString() {
70
        return "RetailerFilterModel [credit=" + credit + ", billing=" + billing + ", investmentPct=" + investmentPct + ", secondaryDays=" + secondaryDays + ", tertiaryDays=" + tertiaryDays + ", mtdsPct=" + mtdsPct + ", mtdtPct=" + mtdtPct + "]";
71
    }
72
 
73
 
74
}