Subversion Repositories SmartDukaan

Rev

Rev 24159 | Rev 26131 | Go to most recent revision | Details | Compare with Previous | 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;
24429 tejbeer 13
 
14
	private boolean sdPortalAccess;
24159 tejbeer 15
 
24429 tejbeer 16
	public boolean isSdPortalAccess() {
17
		return sdPortalAccess;
18
	}
19
 
20
	public void setSdPortalAccess(boolean sdPortalAccess) {
21
		this.sdPortalAccess = sdPortalAccess;
22
	}
23
 
24159 tejbeer 24
	private int retailerId;
25
 
26
	public int getId() {
27
		return id;
28
	}
29
 
30
	public void setId(int id) {
31
		this.id = id;
32
	}
33
 
34
	public String getEmail() {
35
		return email;
36
	}
37
 
38
	public void setEmail(String email) {
39
		this.email = email;
40
	}
41
 
42
	public String getMobile() {
43
		return mobile;
44
	}
45
 
46
	public void setMobile(String mobile) {
47
		this.mobile = mobile;
48
	}
49
 
50
	public String getName() {
51
		return name;
52
	}
53
 
54
	public void setName(String name) {
55
		this.name = name;
56
	}
57
 
58
	public String getBrand() {
59
		return brand;
60
	}
61
 
62
	public void setBrand(String brand) {
63
		this.brand = brand;
64
	}
65
 
66
	public int getRetailerId() {
67
		return retailerId;
68
	}
69
 
70
	public void setRetailerId(int retailerId) {
71
		this.retailerId = retailerId;
72
	}
73
 
74
}