23 lines
647 B
C#
23 lines
647 B
C#
namespace WX.CRM.IBLL.Sms
|
|
{
|
|
public interface ISMS_USERVERIFYCODE_Q
|
|
{
|
|
/// <summary>
|
|
/// 短信发送判断
|
|
/// </summary>
|
|
/// <param name="mobile"></param>
|
|
/// <param name="type"></param>
|
|
/// <param name="time"></param>
|
|
/// <param name="count"></param>
|
|
/// <returns></returns>
|
|
bool checkSendCodeToUser(string resid, string type, int time, int count);
|
|
|
|
/// <summary>
|
|
/// 获取短信帐号
|
|
/// </summary>
|
|
/// <param name="subTypeCode"></param>
|
|
/// <returns></returns>
|
|
string GetCilentCode(string subTypeCode);
|
|
}
|
|
}
|