⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mmsendlog.java

📁 彩信发送源代码,实现mm7接口
💻 JAVA
字号:
/**
 * <pre>
 *            这里说明修改记录,包括修改人,修改时间和修改目的和内容
 *            ---修改时间---修改人---修改目的和内容----------------------
 *                                                               
 * </pre>
 */
package com.sxit.mms;

import java.sql.Timestamp;

/**
 * 
 * @author HuaFeng
 * @version 1.0 (2006-1-13 0:54:26)
 * 
 */
public class MMSendLog {

	private MMSQueue queue;

	public void setQueue(MMSQueue queue) {
		this.queue = queue;
	}

	public MMSQueue getQueue() {
		return this.queue;
	}

	/**
	 * 插入缓冲表的时间
	 */
	private Timestamp insertDate;

	public void setInsertDate(Timestamp insertdate) {
		this.insertDate = insertdate;
	}

	public Timestamp getInsertDate() {
		return this.insertDate;
	}

	/**
	 * MMSC返回来的序列号,和状态报告中返回的msgid对应
	 */
	private String msgID;

	public void setMsgID(String msgid) {
		this.msgID = msgid;
	}

	public String getMsgID() {
		return this.msgID;
	}

	/**
	 * 彩信中心序列号
	 */
	private String mmscID;

	public void seMmscID(String mmscID) {
		this.mmscID = mmscID;
	}

	public String getMmscID() {
		return this.mmscID;
	}

	/**
	 * 彩信的发送时间,发送完毕后,更新此时间
	 */
	private Timestamp sendDate;

	public void setSendDate(Timestamp senddate) {
		this.sendDate = senddate;
	}

	public Timestamp getSendDate() {
		return this.sendDate;
	}

	/**
	 * 此条彩信发送后,mmsc返回来的错误代码,其中,200代表提交成功(http,soap方式为1000)
	 */
	private String retCode;

	public void setRetCode(String retcode) {
		this.retCode = retcode;
	}

	public String getRetCode() {
		return this.retCode;
	}

	/**
	 * 发送后,mmsc返回来的消息内容
	 */
	private String retMsg;

	public void setRetMsg(String retmsg) {
		this.retMsg = retmsg;
	}

	public String getRetMsg() {
		return this.retMsg;
	}

	/**
	 * 状态报告带回来的字段TransactionId
	 */
	private String reportTransactionID;

	public void setReportTransactionID(String reportTransactionID) {
		this.reportTransactionID = reportTransactionID;
	}

	public String getReportTransactionID() {
		return this.reportTransactionID;
	}

	/**
	 * 状态报告返回来的发送方,应和vasfrom一样
	 */
	private String reportSender;

	public void setReportSender(String reportSender) {
		this.reportSender = reportSender;
	}

	public String getReportSender() {
		return this.reportSender;
	}

	/**
	 * 状态报告返回来的接收方,应和vasto一样
	 */
	private String reportDestination;

	public void setReportDestination(String reportDestination) {
		this.reportDestination = reportDestination;
	}

	public String getReportDestination() {
		return this.reportDestination;
	}

	/**
	 * 返回的状态报告字段
	 */
	private String reportStatus;

	public void setReportStatus(String reportStatus) {
		this.reportStatus = reportStatus;
	}

	public String getReportStatus() {
		return this.reportStatus;
	}

	/**
	 * mmsc送回状态报告的时间
	 */
	private String reportSendDate;

	public void setReportSendDate(String reportSendDate) {
		this.reportSendDate = reportSendDate;
	}

	public String getReportSendDate() {
		return this.reportSendDate;
	}

	/**
	 * 状态报告送入数据库的时间
	 */
	private String reportAcceptDate;

	public void setReportAcceptDateD(String reportAcceptDate) {
		this.reportAcceptDate = reportAcceptDate;
	}

	public String getReportAcceptDate() {
		return this.reportAcceptDate;
	}

	/**
	 * 读后回复消息带回来的字段
	 */
	private String readReplyTransactionID;

	public void setReadReplyTransactionID(String readReplyTransactionID) {
		this.readReplyTransactionID = readReplyTransactionID;
	}

	public String getReadReplyTransactionID() {
		return this.readReplyTransactionID;
	}

	/**
	 * 
	 */
	private String readReplySender;

	public void setReadReplySender(String readReplySender) {
		this.readReplySender = readReplySender;
	}

	public String getReadReplySender() {
		return this.readReplySender;
	}

	/**
	 * 
	 */
	private String readReplyDestination;

	public void setReplyDestination(String readReplyDestination) {
		this.readReplyDestination = readReplyDestination;
	}

	public String getReplyDestination() {
		return this.readReplyDestination;
	}

	/**
	 * 0:已读取;1:未读被删;2:未知;
	 */
	private String readReplyStatus;

	public void setReadReplyStatus(String readReplyStatus) {
		this.readReplyStatus = readReplyStatus;
	}

	public String getReadReplyStatus() {
		return this.readReplyStatus;
	}

	/**
	 * readreply由 mmsc返回的时间
	 */
	private String readReplySendDate;

	public void setReadReplySendDate(String readReplySendDate) {
		this.reportTransactionID = readReplySendDate;
	}

	public String getReadReplySendDate() {
		return this.readReplySendDate;
	}

	/**
	 * 接收读后回复消息的时间
	 */
	private String readReplyAccepDate;

	public void setReadReplyAccepDate(String readReplyAccepDate) {
		this.readReplyAccepDate = readReplyAccepDate;
	}

	public String getReadReplyAccepDate() {
		return this.readReplyAccepDate;
	}




}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -