namespace WX.CRM.IBLL.Sms
{
public interface ISMS_USERVERIFYCODE
{
///
/// 开户获取验证码
///
///
///
///
///
///
string GetVerifyCodeHandler(string mobile, int sendcodetime, int sendcodecount, string subTypeCode, string typeCode, decimal createuser = 1);
///
/// 发送信息到用户手机上
///
/// 认证码
void SendMessageToUser(string resId, string typeCode, string subTypeCode, string message, string clientCode, decimal createiser = 1);
///
/// 开户认证
///
///
///
///
string CheckOpenAccount(string resid, string code, string subtypeCode);
}
}