Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
32044 tejbeer 1
package com.spice.profitmandi.dao.model;
2
 
3
public class BillingDaysAvg {
4
 
5
    private int fofoId;
6
    private long avg;
7
 
8
 
9
    public BillingDaysAvg(int fofoId, long avg) {
10
        super();
11
        this.fofoId = fofoId;
12
        this.avg = avg;
13
    }
14
 
15
    public int getFofoId() {
16
        return fofoId;
17
    }
18
 
19
    public void setFofoId(int fofoId) {
20
        this.fofoId = fofoId;
21
    }
22
 
23
    public long getAvg() {
24
        return avg;
25
    }
26
 
27
    public void setAvg(long avg) {
28
        this.avg = avg;
29
    }
30
 
31
    @Override
32
    public String toString() {
33
        return "BillingDaysAvg [fofoId=" + fofoId + ", avg=" + avg + "]";
34
    }
35
 
36
 
37
}