Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5432 amar.kumar 1
package in.shop2020.user.domain;
2
 
3
import in.shop2020.model.v1.user.UserCommunicationType;
4
 
5
import java.util.Date;
6
 
7
public class UserCommunication {
8
	private long id;
9
	private long user_id;
10
	private long communication_type;
11
	private long order_id;
12
	private String airwaybill_no;
13
	private String reply_to;
14
	private String product_name;
15
	private String subject;
16
	private String message;
17
	private Date communication_timestamp;
18
 
19
	public long getId() {
20
		return id;
21
	}
22
	public void setId(long id) {
23
		this.id = id;
24
	}
25
	public long getUser_id() {
26
		return user_id;
27
	}
28
	public void setUser_id(long user_id) {
29
		this.user_id = user_id;
30
	}
31
	public long getCommunication_type() {
32
		return communication_type;
33
	}
34
	public void setCommunication_type(long communication_type) {
35
		this.communication_type = communication_type;
36
	}
37
	public long getOrder_id() {
38
		return order_id;
39
	}
40
	public void setOrder_id(long order_id) {
41
		this.order_id = order_id;
42
	}
43
	public String getAirwaybill_no() {
44
		return airwaybill_no;
45
	}
46
	public void setAirwaybill_no(String airwaybill_no) {
47
		this.airwaybill_no = airwaybill_no;
48
	}
49
	public String getReply_to() {
50
		return reply_to;
51
	}
52
	public void setReply_to(String reply_to) {
53
		this.reply_to = reply_to;
54
	}
55
	public String getProduct_name() {
56
		return product_name;
57
	}
58
	public void setProduct_name(String product_name) {
59
		this.product_name = product_name;
60
	}
61
	public String getSubject() {
62
		return subject;
63
	}
64
	public void setSubject(String subject) {
65
		this.subject = subject;
66
	}
67
	public String getMessage() {
68
		return message;
69
	}
70
	public void setMessage(String message) {
71
		this.message = message;
72
	}
73
	public Date getCommunication_timestamp() {
74
		return communication_timestamp;
75
	}
76
	public void setCommunication_timestamp(Date communication_timestamp) {
77
		this.communication_timestamp = communication_timestamp;
78
	}
79
 
80
}