public bool VerifyCode(string phone, string code)
        {
            SMSDB db = new SMSDB();

            SMSDB.SMSContent content = db.GetLastSMS(phone);
            if (content != null)
            {
                if (content.code == code)
                {
                    return(true);
                }
            }
            return(false);
        }
        public bool EnableReSend(string acceptor_tel)
        {
            SMSDB db = new SMSDB();

            SMSDB.SMSContent content = db.GetLastSMS(acceptor_tel);
            if (content == null)
            {
                return(true);
            }
            else
            {
                if (DateTime.Now.Ticks - content.time > timeInterval)
                {
                    return(true);
                }
            }
            return(false);
        }