SMSService.java 618 Bytes
package com.diligrp.website.service;

import com.diligrp.website.domain.MobMessage;


/**
 * 
 * <B>Description</B> 发送短信 <br />
 * <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br />
 * 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br />
 * <B>Company</B> 地利集团
 * @createTime 2014年6月4日 下午7:31:27
 * @author Wang22
 */
public interface SMSService {
    
    /**
     * 
     * 发送短信
     * @return
     * @createTime 2014年6月4日 下午7:31:50
     * @author Wang22
     */
    public boolean sendSMS(MobMessage mm);

}