Subversion Repositories SmartDukaan

Rev

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

Rev 28200 Rev 31249
Line 1... Line 1...
1
package com.spice.profitmandi.dao.model;
1
package com.spice.profitmandi.dao.model;
2
 
2
 
3
import java.time.LocalDateTime;
3
import java.time.LocalDateTime;
4
 
4
 
-
 
5
import com.spice.profitmandi.dao.enumuration.dtr.CommunicationType;
5
import com.spice.profitmandi.dao.enumuration.dtr.LeadStatus;
6
import com.spice.profitmandi.dao.enumuration.dtr.LeadStatus;
6
 
7
 
7
public class CreateRefferalRequest {
8
public class CreateRefferalRequest {
8
 
9
 
9
	private String firstName;
10
	private String firstName;
Line 16... Line 17...
16
	private String remark;
17
	private String remark;
17
	private int assignTo;
18
	private int assignTo;
18
	private String source;
19
	private String source;
19
	private Boolean colorCheck;
20
	private Boolean colorCheck;
20
	private String reason;
21
	private String reason;
21
 
-
 
-
 
22
	private CommunicationType communicationType;
22
	private LocalDateTime closureTimestamp;
23
	private LocalDateTime closureTimestamp;
23
 
24
 
24
	public String getReason() {
25
	public String getReason() {
25
		return reason;
26
		return reason;
26
	}
27
	}
27
 
28
 
28
	public void setReason(String reason) {
29
	public void setReason(String reason) {
29
		this.reason = reason;
30
		this.reason = reason;
30
	}
31
	}
31
 
32
 
-
 
33
	public CommunicationType getCommunicationType() {
-
 
34
		return communicationType;
-
 
35
	}
-
 
36
 
-
 
37
	public void setCommunicationType(CommunicationType communicationType) {
-
 
38
		this.communicationType = communicationType;
-
 
39
	}
-
 
40
 
32
	public LocalDateTime getClosureTimestamp() {
41
	public LocalDateTime getClosureTimestamp() {
33
		return closureTimestamp;
42
		return closureTimestamp;
34
	}
43
	}
35
 
44
 
36
	public void setClosureTimestamp(LocalDateTime closureTimestamp) {
45
	public void setClosureTimestamp(LocalDateTime closureTimestamp) {