Exemplo n.º 1
0
        /// <summary>
        /// 增加一条数据
        /// </summary>
        public int Add(ShortMessageVerificationModel model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("insert into HQ_Sms_Verification(");
            strSql.Append("Verification,CreateTime,IsInvalid,Mobile)");
            strSql.Append(" values (");
            strSql.Append("@Verification,@CreateTime,@IsInvalid,@Mobile)");
            strSql.Append(";select @@IDENTITY");
            SqlParameter[] parameters =
            {
                new SqlParameter("@Verification", SqlDbType.VarChar,   7),
                new SqlParameter("@CreateTime",   SqlDbType.DateTime),
                new SqlParameter("@IsInvalid",    SqlDbType.SmallInt,  2),
                new SqlParameter("@Mobile",       SqlDbType.VarChar, 11)
            };
            parameters[0].Value = model.Verification;
            parameters[1].Value = model.CreateTime;
            parameters[2].Value = model.IsInvalid;
            parameters[3].Value = model.Mobile;

            object obj = DbHelperSQL.GetSingle(strSql.ToString(), parameters);

            if (obj == null)
            {
                return(0);
            }
            else
            {
                return(Convert.ToInt32(obj));
            }
        }
Exemplo n.º 2
0
        /// <summary>
        /// 发送验证码
        /// </summary>
        /// <param name="mobile"></param>
        /// <returns></returns>
        public bool SendVerification(string mobile)
        {
            if (string.IsNullOrEmpty(mobile))
            {
                return(false);
            }
            string verificationNum = StringHelper.GetRandomNumber(100000, 999999).ToString();
            ShortMessageVerificationModel model = new ShortMessageVerificationModel
            {
                Verification = verificationNum,
                CreateTime   = DateTime.Now,
                IsInvalid    = 0,
                Mobile       = mobile
            };

            if (!this.AddOrUpdate(model))
            {
                return(false);
            }
            string sendErrMsg;

            ShortMessageDispatcher.Send(mobile, new VerifyCodeShortMessage()
            {
                Verifycode = verificationNum
            }, out sendErrMsg);
            return(true);
        }
Exemplo n.º 3
0
        /// <summary>
        /// 得到一个对象实体
        /// </summary>
        public ShortMessageVerificationModel DataRowToModel(DataRow row)
        {
            ShortMessageVerificationModel model = new ShortMessageVerificationModel();

            if (row != null)
            {
                if (row["Id"] != null && row["Id"].ToString() != "")
                {
                    model.Id = int.Parse(row["Id"].ToString());
                }
                if (row["Verification"] != null)
                {
                    model.Verification = row["Verification"].ToString();
                }
                if (row["CreateTime"] != null && row["CreateTime"].ToString() != "")
                {
                    model.CreateTime = DateTime.Parse(row["CreateTime"].ToString());
                }
                if (row["IsInvalid"] != null && row["IsInvalid"].ToString() != "")
                {
                    model.IsInvalid = int.Parse(row["IsInvalid"].ToString());
                }
                if (row["Mobile"] != null)
                {
                    model.Mobile = row["Mobile"].ToString();
                }
            }
            return(model);
        }
Exemplo n.º 4
0
        /// <summary>
        /// 更新一条数据
        /// </summary>
        public bool Update(ShortMessageVerificationModel model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("update HQ_Sms_Verification set ");
            strSql.Append("Verification=@Verification,");
            strSql.Append("CreateTime=@CreateTime,");
            strSql.Append("IsInvalid=@IsInvalid,");
            strSql.Append("Mobile=@Mobile");
            strSql.Append(" where Id=@Id");
            SqlParameter[] parameters =
            {
                new SqlParameter("@Verification", SqlDbType.VarChar,    7),
                new SqlParameter("@CreateTime",   SqlDbType.DateTime),
                new SqlParameter("@IsInvalid",    SqlDbType.SmallInt,   2),
                new SqlParameter("@Mobile",       SqlDbType.VarChar,   11),
                new SqlParameter("@Id",           SqlDbType.Int, 4)
            };
            parameters[0].Value = model.Verification;
            parameters[1].Value = model.CreateTime;
            parameters[2].Value = model.IsInvalid;
            parameters[3].Value = model.Mobile;
            parameters[4].Value = model.Id;

            int rows = DbHelperSQL.ExecuteSql(strSql.ToString(), parameters);

            if (rows > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Exemplo n.º 5
0
        /// <summary>
        /// 添加或者更新
        /// </summary>
        /// <param name="model"></param>
        /// <returns></returns>
        public bool AddOrUpdate(ShortMessageVerificationModel model)
        {
            string sql = string.Format(@"if not exists(select * from HQ_Sms_Verification where Mobile='{0}')
                                        begin insert into HQ_Sms_Verification (Verification,CreateTime,IsInvalid,Mobile) 
                                        values('{1}',getdate(),{2},'{0}') end
                                        else begin update HQ_Sms_Verification set Verification='{1}',CreateTime=getdate(),
                                        IsInvalid={2} where Mobile='{0}' end",
                                       model.Mobile,
                                       model.Verification,
                                       model.IsInvalid);

            return(DbHelperSQL.ExecuteSql(sql) > 0);
        }
Exemplo n.º 6
0
        /// <summary>
        /// 得到一个对象实体
        /// </summary>
        public ShortMessageVerificationModel GetModel(int Id)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("select  top 1 * from HQ_Sms_Verification ");
            strSql.Append(" where Id=@Id");
            SqlParameter[] parameters =
            {
                new SqlParameter("@Id", SqlDbType.Int, 4)
            };
            parameters[0].Value = Id;

            ShortMessageVerificationModel model = new ShortMessageVerificationModel();
            DataSet ds = DbHelperSQL.Query(strSql.ToString(), parameters);

            if (ds.Tables[0].Rows.Count > 0)
            {
                return(DataRowToModel(ds.Tables[0].Rows[0]));
            }
            else
            {
                return(null);
            }
        }
Exemplo n.º 7
0
 /// <summary>
 /// 增加一条数据
 /// </summary>
 public int Add(ShortMessageVerificationModel model)
 {
     return(dal.Add(model));
 }
Exemplo n.º 8
0
 /// <summary>
 /// 添加或者更新
 /// </summary>
 /// <param name="model"></param>
 /// <returns></returns>
 public bool AddOrUpdate(ShortMessageVerificationModel model)
 {
     return(dal.AddOrUpdate(model));
 }