E120Request.java 1.51 KB
Newer Older
xucl committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
package com.fadu.app.bean.e;

import java.util.Date;

import com.fadu.app.bean.BaseRequest;

/**
 * app端推送消息成功时调用,保存消息到数据库
 * @author Eureka
 *
 */
public class E120Request extends BaseRequest {
	public E120Request() {
		setActionCode("E120");
	}
	
	private int msgType;
	
	private String orderId;
		
	private String pusher;//消息发送人
	
	private String suber;//消息接收人
		
	private String pushDate;//消息推送时间
	
	private String topic;//话题
	
	private int voiceTime;// 语音时长
	
	private String message;

	public int getMsgType() {
		return msgType;
	}

	public void setMsgType(int msgType) {
		this.msgType = msgType;
	}

	public String getOrderId() {
		return orderId;
	}

	public void setOrderId(String orderId) {
		this.orderId = orderId;
	}

	public int getVoiceTime() {
		return voiceTime;
	}

	public void setVoiceTime(int voiceTime) {
		this.voiceTime = voiceTime;
	}

	public String getPusher() {
		return pusher;
	}

	public void setPusher(String pusher) {
		this.pusher = pusher;
	}

	public String getSuber() {
		return suber;
	}

	public void setSuber(String suber) {
		this.suber = suber;
	}

	public String getPushDate() {
		return pushDate;
	}

	public void setPushDate(String pushDate) {
		this.pushDate = pushDate;
	}

	public String getTopic() {
		return topic;
	}

	public void setTopic(String topic) {
		this.topic = topic;
	}

	public String getMessage() {
		return message;
	}

	public void setMessage(String message) {
		this.message = message;
	}
}