Subversion Repositories SmartDukaan

Rev

Rev 32044 | Go to most recent revision | 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;
32227 amit.gupta 11
    private String state;
32044 tejbeer 12
 
32227 amit.gupta 13
 
14
    public String getState() {
15
        return state;
16
    }
17
 
18
    public void setState(String state) {
19
        this.state = state;
20
    }
21
 
32044 tejbeer 22
    public boolean isCredit() {
23
        return credit;
24
    }
25
 
26
    public void setCredit(boolean credit) {
27
        this.credit = credit;
28
    }
29
 
30
    public boolean isBilling() {
31
        return billing;
32
    }
33
 
34
    public void setBilling(boolean billing) {
35
        this.billing = billing;
36
    }
37
 
38
    public Integer getInvestmentPct() {
39
        return investmentPct;
40
    }
41
 
42
    public void setInvestmentPct(Integer investmentPct) {
43
        this.investmentPct = investmentPct;
44
    }
45
 
46
    public Integer getSecondaryDays() {
47
        return secondaryDays;
48
    }
49
 
50
    public void setSecondaryDays(Integer secondaryDays) {
51
        this.secondaryDays = secondaryDays;
52
    }
53
 
54
    public Integer getTertiaryDays() {
55
        return tertiaryDays;
56
    }
57
 
58
    public void setTertiaryDays(Integer tertiaryDays) {
59
        this.tertiaryDays = tertiaryDays;
60
    }
61
 
62
    public Integer getMtdsPct() {
63
        return mtdsPct;
64
    }
65
 
66
    public void setMtdsPct(Integer mtdsPct) {
67
        this.mtdsPct = mtdsPct;
68
    }
69
 
70
    public Integer getMtdtPct() {
71
        return mtdtPct;
72
    }
73
 
74
    public void setMtdtPct(Integer mtdtPct) {
75
        this.mtdtPct = mtdtPct;
76
    }
77
 
78
    @Override
79
    public String toString() {
80
        return "RetailerFilterModel [credit=" + credit + ", billing=" + billing + ", investmentPct=" + investmentPct + ", secondaryDays=" + secondaryDays + ", tertiaryDays=" + tertiaryDays + ", mtdsPct=" + mtdsPct + ", mtdtPct=" + mtdtPct + "]";
81
    }
82
 
83
 
84
}