Esempio n. 1
0
        /// <summary>
        /// 增加一条数据
        /// </summary>
        public bool Add(LingLong.Admin.Model.t_withdraw model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("insert into t_withdraw(");
            strSql.Append("StoreId,BillNo,OpenId,WithdrawName,Withdraw,WithdrawTime,State,IsDeleted,DeleterUserId,LastModificationTime,LastModifierUserId,CreationTime,CreatorUserId)");
            strSql.Append(" values (");
            strSql.Append("@StoreId,@BillNo,@OpenId,@WithdrawName,@Withdraw,@WithdrawTime,@State,@IsDeleted,@DeleterUserId,@LastModificationTime,@LastModifierUserId,@CreationTime,@CreatorUserId)");
            MySqlParameter[] parameters =
            {
                new MySqlParameter("@StoreId",              MySqlDbType.Int32,      11),
                new MySqlParameter("@BillNo",               MySqlDbType.LongText),
                new MySqlParameter("@OpenId",               MySqlDbType.LongText),
                new MySqlParameter("@WithdrawName",         MySqlDbType.VarChar,   100),
                new MySqlParameter("@Withdraw",             MySqlDbType.Decimal,    10),
                new MySqlParameter("@WithdrawTime",         MySqlDbType.DateTime),
                new MySqlParameter("@State",                MySqlDbType.Int16,       4),
                new MySqlParameter("@IsDeleted",            MySqlDbType.Int16,       4),
                new MySqlParameter("@DeleterUserId",        MySqlDbType.Int64,      20),
                new MySqlParameter("@LastModificationTime", MySqlDbType.DateTime),
                new MySqlParameter("@LastModifierUserId",   MySqlDbType.Int64,      20),
                new MySqlParameter("@CreationTime",         MySqlDbType.DateTime),
                new MySqlParameter("@CreatorUserId",        MySqlDbType.Int64, 20)
            };
            parameters[0].Value  = model.StoreId;
            parameters[1].Value  = model.BillNo;
            parameters[2].Value  = model.OpenId;
            parameters[3].Value  = model.WithdrawName;
            parameters[4].Value  = model.Withdraw;
            parameters[5].Value  = model.WithdrawTime;
            parameters[6].Value  = model.State;
            parameters[7].Value  = model.IsDeleted;
            parameters[8].Value  = model.DeleterUserId;
            parameters[9].Value  = model.LastModificationTime;
            parameters[10].Value = model.LastModifierUserId;
            parameters[11].Value = model.CreationTime;
            parameters[12].Value = model.CreatorUserId;

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

            if (rows > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Esempio n. 2
0
        /// <summary>
        /// 得到一个对象实体
        /// </summary>
        public LingLong.Admin.Model.t_withdraw GetModel(int ID)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("select ID,StoreId,BillNo,OpenId,WithdrawName,Withdraw,WithdrawTime,State,IsDeleted,DeleterUserId,LastModificationTime,LastModifierUserId,CreationTime,CreatorUserId from t_withdraw ");
            strSql.Append(" where ID=@ID");
            MySqlParameter[] parameters =
            {
                new MySqlParameter("@ID", MySqlDbType.Int32)
            };
            parameters[0].Value = ID;

            LingLong.Admin.Model.t_withdraw model = new LingLong.Admin.Model.t_withdraw();
            DataSet ds = DbHelperMySql.Query(strSql.ToString(), parameters);

            if (ds.Tables[0].Rows.Count > 0)
            {
                return(DataRowToModel(ds.Tables[0].Rows[0]));
            }
            else
            {
                return(null);
            }
        }
Esempio n. 3
0
 /// <summary>
 /// 更新一条数据
 /// </summary>
 public bool Update(LingLong.Admin.Model.t_withdraw model)
 {
     return(dal.Update(model));
 }
Esempio n. 4
0
 /// <summary>
 /// 增加一条数据
 /// </summary>
 public bool Add(LingLong.Admin.Model.t_withdraw model)
 {
     return(dal.Add(model));
 }
Esempio n. 5
0
 /// <summary>
 /// 得到一个对象实体
 /// </summary>
 public LingLong.Admin.Model.t_withdraw DataRowToModel(DataRow row)
 {
     LingLong.Admin.Model.t_withdraw model = new LingLong.Admin.Model.t_withdraw();
     if (row != null)
     {
         if (row["ID"] != null && row["ID"].ToString() != "")
         {
             model.ID = int.Parse(row["ID"].ToString());
         }
         if (row["StoreId"] != null && row["StoreId"].ToString() != "")
         {
             model.StoreId = int.Parse(row["StoreId"].ToString());
         }
         if (row["BillNo"] != null)
         {
             model.BillNo = row["BillNo"].ToString();
         }
         if (row["OpenId"] != null)
         {
             model.OpenId = row["OpenId"].ToString();
         }
         if (row["WithdrawName"] != null)
         {
             model.WithdrawName = row["WithdrawName"].ToString();
         }
         if (row["Withdraw"] != null && row["Withdraw"].ToString() != "")
         {
             model.Withdraw = decimal.Parse(row["Withdraw"].ToString());
         }
         if (row["WithdrawTime"] != null && row["WithdrawTime"].ToString() != "")
         {
             model.WithdrawTime = DateTime.Parse(row["WithdrawTime"].ToString());
         }
         if (row["State"] != null && row["State"].ToString() != "")
         {
             model.State = int.Parse(row["State"].ToString());
         }
         if (row["IsDeleted"] != null && row["IsDeleted"].ToString() != "")
         {
             model.IsDeleted = int.Parse(row["IsDeleted"].ToString());
         }
         if (row["DeleterUserId"] != null && row["DeleterUserId"].ToString() != "")
         {
             model.DeleterUserId = long.Parse(row["DeleterUserId"].ToString());
         }
         if (row["LastModificationTime"] != null && row["LastModificationTime"].ToString() != "")
         {
             model.LastModificationTime = DateTime.Parse(row["LastModificationTime"].ToString());
         }
         if (row["LastModifierUserId"] != null && row["LastModifierUserId"].ToString() != "")
         {
             model.LastModifierUserId = long.Parse(row["LastModifierUserId"].ToString());
         }
         if (row["CreationTime"] != null && row["CreationTime"].ToString() != "")
         {
             model.CreationTime = DateTime.Parse(row["CreationTime"].ToString());
         }
         if (row["CreatorUserId"] != null && row["CreatorUserId"].ToString() != "")
         {
             model.CreatorUserId = long.Parse(row["CreatorUserId"].ToString());
         }
     }
     return(model);
 }
Esempio n. 6
0
        /// <summary>
        /// 更新一条数据
        /// </summary>
        public bool Update(LingLong.Admin.Model.t_withdraw model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("update t_withdraw set ");
            strSql.Append("StoreId=@StoreId,");
            strSql.Append("BillNo=@BillNo,");
            strSql.Append("OpenId=@OpenId,");
            strSql.Append("WithdrawName=@WithdrawName,");
            strSql.Append("Withdraw=@Withdraw,");
            strSql.Append("WithdrawTime=@WithdrawTime,");
            strSql.Append("State=@State,");
            strSql.Append("IsDeleted=@IsDeleted,");
            strSql.Append("DeleterUserId=@DeleterUserId,");
            strSql.Append("LastModificationTime=@LastModificationTime,");
            strSql.Append("LastModifierUserId=@LastModifierUserId,");
            strSql.Append("CreationTime=@CreationTime,");
            strSql.Append("CreatorUserId=@CreatorUserId");
            strSql.Append(" where ID=@ID");
            MySqlParameter[] parameters =
            {
                new MySqlParameter("@StoreId",              MySqlDbType.Int32,      11),
                new MySqlParameter("@BillNo",               MySqlDbType.LongText),
                new MySqlParameter("@OpenId",               MySqlDbType.LongText),
                new MySqlParameter("@WithdrawName",         MySqlDbType.VarChar,   100),
                new MySqlParameter("@Withdraw",             MySqlDbType.Decimal,    10),
                new MySqlParameter("@WithdrawTime",         MySqlDbType.DateTime),
                new MySqlParameter("@State",                MySqlDbType.Int16,       4),
                new MySqlParameter("@IsDeleted",            MySqlDbType.Int16,       4),
                new MySqlParameter("@DeleterUserId",        MySqlDbType.Int64,      20),
                new MySqlParameter("@LastModificationTime", MySqlDbType.DateTime),
                new MySqlParameter("@LastModifierUserId",   MySqlDbType.Int64,      20),
                new MySqlParameter("@CreationTime",         MySqlDbType.DateTime),
                new MySqlParameter("@CreatorUserId",        MySqlDbType.Int64,      20),
                new MySqlParameter("@ID",                   MySqlDbType.Int32, 11)
            };
            parameters[0].Value  = model.StoreId;
            parameters[1].Value  = model.BillNo;
            parameters[2].Value  = model.OpenId;
            parameters[3].Value  = model.WithdrawName;
            parameters[4].Value  = model.Withdraw;
            parameters[5].Value  = model.WithdrawTime;
            parameters[6].Value  = model.State;
            parameters[7].Value  = model.IsDeleted;
            parameters[8].Value  = model.DeleterUserId;
            parameters[9].Value  = model.LastModificationTime;
            parameters[10].Value = model.LastModifierUserId;
            parameters[11].Value = model.CreationTime;
            parameters[12].Value = model.CreatorUserId;
            parameters[13].Value = model.ID;

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

            if (rows > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }