MessageRPC.java 809 Bytes
package com.diligrp.mobsite.getway.rpc;

/**
 * <B>Description</B> <br />
 * <B>Copyright</B> Copyright (c) 2015 www.diligrp.com All rights reserved. <br />
 * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br />
 * <B>Company</B> 地利集团
 * @createTime 2015年6月25日 下午5:03:31
 * @author zhangshirui
 */
public interface MessageRPC {

	/**
	 * 调用消息中心,发送短信
	 * @return
	 * @createTime 2015年6月25日 下午5:17:43
	 * @author zhangshirui
	 */
	void sendSMS(String mobile, String content);

	/**
	 * 新的短信运营,只适用于注册
	 * @param mobile
	 * @param content
	 * @param dicCode
	 * @createTime 2015年8月28日 下午2:16:00
	 * @author zhangshirui
	 */
	void sendSMSMsg(String mobile, String content, String dicCode);

}