Subversion Repositories SmartDukaan

Rev

Rev 26460 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
26418 tejbeer 1
package com.spice.profitmandi.dao.model;
2
 
3
public class PartnerDetailModel {
4
 
5
	private double lmtd;
6
	private double mtd;
7
	private int ticket;
8
	private double hygiene;
9
	private float investment;
10
	private float stockInInvestment;
11
	private int leads;
12
 
13
	public int getLeads() {
14
		return leads;
15
	}
16
 
17
	public void setLeads(int leads) {
18
		this.leads = leads;
19
	}
20
 
21
	public double getLmtd() {
22
		return lmtd;
23
	}
24
 
25
	public void setLmtd(double lmtd) {
26
		this.lmtd = lmtd;
27
	}
28
 
29
	public double getMtd() {
30
		return mtd;
31
	}
32
 
33
	public void setMtd(double mtd) {
34
		this.mtd = mtd;
35
	}
36
 
37
	public int getTicket() {
38
		return ticket;
39
	}
40
 
41
	public void setTicket(int ticket) {
42
		this.ticket = ticket;
43
	}
44
 
45
	public double getHygiene() {
46
		return hygiene;
47
	}
48
 
49
	public void setHygiene(double hygiene) {
50
		this.hygiene = hygiene;
51
	}
52
 
53
	public float getInvestment() {
54
		return investment;
55
	}
56
 
57
	public void setInvestment(float investment) {
58
		this.investment = investment;
59
	}
60
 
61
	public float getStockInInvestment() {
62
		return stockInInvestment;
63
	}
64
 
65
	public void setStockInInvestment(float stockInInvestment) {
66
		this.stockInInvestment = stockInInvestment;
67
	}
68
 
69
}