Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
24159 tejbeer 1
package com.spice.profitmandi.common.model;
2
 
3
public class PromoterDetailModel {
4
 
5
	private int id;
6
	private String name;
7
 
8
	private String brand;
9
 
10
	private String email;
11
 
12
	private String mobile;
13
 
14
	private int retailerId;
15
 
16
	public int getId() {
17
		return id;
18
	}
19
 
20
	public void setId(int id) {
21
		this.id = id;
22
	}
23
 
24
	public String getEmail() {
25
		return email;
26
	}
27
 
28
	public void setEmail(String email) {
29
		this.email = email;
30
	}
31
 
32
	public String getMobile() {
33
		return mobile;
34
	}
35
 
36
	public void setMobile(String mobile) {
37
		this.mobile = mobile;
38
	}
39
 
40
	public String getName() {
41
		return name;
42
	}
43
 
44
	public void setName(String name) {
45
		this.name = name;
46
	}
47
 
48
	public String getBrand() {
49
		return brand;
50
	}
51
 
52
	public void setBrand(String brand) {
53
		this.brand = brand;
54
	}
55
 
56
	public int getRetailerId() {
57
		return retailerId;
58
	}
59
 
60
	public void setRetailerId(int retailerId) {
61
		this.retailerId = retailerId;
62
	}
63
 
64
}