Blame | Last modification | View Log | RSS feed
package in.shop2020.user.domain;import in.shop2020.model.v1.user.UserCommunicationType;import java.util.Date;public class UserCommunication {private long id;private long user_id;private long communication_type;private long order_id;private String airwaybill_no;private String reply_to;private String product_name;private String subject;private String message;private Date communication_timestamp;public long getId() {return id;}public void setId(long id) {this.id = id;}public long getUser_id() {return user_id;}public void setUser_id(long user_id) {this.user_id = user_id;}public long getCommunication_type() {return communication_type;}public void setCommunication_type(long communication_type) {this.communication_type = communication_type;}public long getOrder_id() {return order_id;}public void setOrder_id(long order_id) {this.order_id = order_id;}public String getAirwaybill_no() {return airwaybill_no;}public void setAirwaybill_no(String airwaybill_no) {this.airwaybill_no = airwaybill_no;}public String getReply_to() {return reply_to;}public void setReply_to(String reply_to) {this.reply_to = reply_to;}public String getProduct_name() {return product_name;}public void setProduct_name(String product_name) {this.product_name = product_name;}public String getSubject() {return subject;}public void setSubject(String subject) {this.subject = subject;}public String getMessage() {return message;}public void setMessage(String message) {this.message = message;}public Date getCommunication_timestamp() {return communication_timestamp;}public void setCommunication_timestamp(Date communication_timestamp) {this.communication_timestamp = communication_timestamp;}}