Subversion Repositories SmartDukaan

Rev

Rev 25906 | Rev 34276 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 25906 Rev 30488
Line 4... Line 4...
4
 
4
 
5
import com.spice.profitmandi.dao.enumuration.dtr.FranchiseeActivityStatus;
5
import com.spice.profitmandi.dao.enumuration.dtr.FranchiseeActivityStatus;
6
 
6
 
7
public class CreateFranchiseeRequest {
7
public class CreateFranchiseeRequest {
8
	private int id;
8
	private int id;
9
 
-
 
10
	public int getId() {
-
 
11
		return id;
-
 
12
	}
-
 
13
 
-
 
14
	public void setId(int id) {
-
 
15
		this.id = id;
-
 
16
	}
-
 
17
 
-
 
18
	private int fofoId;
9
	private int fofoId;
19
	private String agenda;
10
	private String agenda;
20
	private String partnerRemark;
11
	private String partnerRemark;
21
	private String outsideVisibity;
12
	private String outsideVisibity;
22
	private String instoreVisibility;
13
	private String instoreVisibility;
Line 33... Line 24...
33
	private String resolution;
24
	private String resolution;
34
	private FranchiseeActivityStatus action;
25
	private FranchiseeActivityStatus action;
35
	private LocalDateTime schelduleTimestamp;
26
	private LocalDateTime schelduleTimestamp;
36
	private LocalDateTime firstSchelduleTimestamp;
27
	private LocalDateTime firstSchelduleTimestamp;
37
	private String createdBy;
28
	private String createdBy;
-
 
29
	private int pendingBilling;
-
 
30
	private String online;
-
 
31
 
-
 
32
	public int getPendingBilling() {
-
 
33
		return pendingBilling;
-
 
34
	}
-
 
35
 
-
 
36
	public void setPendingBilling(int pendingBilling) {
-
 
37
		this.pendingBilling = pendingBilling;
-
 
38
	}
-
 
39
 
-
 
40
	public String getOnline() {
-
 
41
		return online;
-
 
42
	}
-
 
43
 
-
 
44
	public void setOnline(String online) {
-
 
45
		this.online = online;
-
 
46
	}
-
 
47
 
-
 
48
	public int getId() {
-
 
49
		return id;
-
 
50
	}
-
 
51
 
-
 
52
	public void setId(int id) {
-
 
53
		this.id = id;
-
 
54
	}
38
 
55
 
39
	public String getCreatedBy() {
56
	public String getCreatedBy() {
40
		return createdBy;
57
		return createdBy;
41
	}
58
	}
42
 
59