Ejemplo n.º 1
0
        public string Xyxzj_add_edit(string id, string yydh, string qymc, string zjm, string yxzj, string add_edit_delete, string xxzs)
        {
            string s = common_file.common_app.get_failure;

            BLL.Xyxzj   B_Xyxzj = new Hotel_app.BLL.Xyxzj();
            Model.Xyxzj M_Xyxzj = new Hotel_app.Model.Xyxzj();
            if (xxzs == common_file.common_app.xxzs_xxvalue)
            {
            }
            if (xxzs == common_file.common_app.xxzs_zsvalue)
            {
            }
            if (add_edit_delete == common_file.common_app.get_add)
            {
                M_Xyxzj.yydh = yydh;
                M_Xyxzj.qymc = qymc;
                M_Xyxzj.zjm  = zjm;
                M_Xyxzj.yxzj = yxzj;
                //M_Xyxzj.is_top =is_top;
                //M_Xyxzj.is_select =is_select;


                //int ss = B_Xyxzj.Add(M_Xyxzj);

                if (B_Xyxzj.Add(M_Xyxzj) > 0)
                {
                    s = common_file.common_app.get_suc;
                }
            }
            else
            if (add_edit_delete == common_file.common_app.get_edit)
            {
                M_Xyxzj      = B_Xyxzj.GetModel(Convert.ToInt32(id));
                M_Xyxzj.yydh = yydh;
                M_Xyxzj.qymc = qymc;
                M_Xyxzj.zjm  = zjm;
                M_Xyxzj.yxzj = yxzj;
                //M_Xyxzj.is_top = is_top;
                //M_Xyxzj.is_select = is_select;
                M_Xyxzj.id = int.Parse(id);
                if (B_Xyxzj.Update(M_Xyxzj))
                {
                    s = common_file.common_app.get_suc;
                }
            }
            else
            if (add_edit_delete == common_file.common_app.get_delete)
            {
                if (id != "")
                {
                    B_Xyxzj.Delete(Convert.ToInt32(id));
                    s = common_file.common_app.get_suc;
                }
            }
            return(s);
        }
Ejemplo n.º 2
0
        /// <summary>
        /// 更新一条数据
        /// </summary>
        public bool Update(Hotel_app.Model.Xyxzj model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("update Xyxzj set ");
            strSql.Append("yydh=@yydh,");
            strSql.Append("qymc=@qymc,");
            strSql.Append("yxzj=@yxzj,");
            strSql.Append("zjm=@zjm,");
            strSql.Append("is_top=@is_top,");
            strSql.Append("is_select=@is_select");
            strSql.Append(" where id=@id");
            SqlParameter[] parameters =
            {
                new SqlParameter("@yydh",      SqlDbType.VarChar, 50),
                new SqlParameter("@qymc",      SqlDbType.VarChar, 50),
                new SqlParameter("@yxzj",      SqlDbType.VarChar, 50),
                new SqlParameter("@zjm",       SqlDbType.VarChar, 50),
                new SqlParameter("@is_top",    SqlDbType.Bit,      1),
                new SqlParameter("@is_select", SqlDbType.Bit,      1),
                new SqlParameter("@id",        SqlDbType.Int, 4)
            };
            parameters[0].Value = model.yydh;
            parameters[1].Value = model.qymc;
            parameters[2].Value = model.yxzj;
            parameters[3].Value = model.zjm;
            parameters[4].Value = model.is_top;
            parameters[5].Value = model.is_select;
            parameters[6].Value = model.id;

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

            if (rows > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Ejemplo n.º 3
0
        /// <summary>
        /// 增加一条数据
        /// </summary>
        public int Add(Hotel_app.Model.Xyxzj model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("insert into Xyxzj(");
            strSql.Append("yydh,qymc,yxzj,zjm,is_top,is_select)");
            strSql.Append(" values (");
            strSql.Append("@yydh,@qymc,@yxzj,@zjm,@is_top,@is_select)");
            strSql.Append(";select @@IDENTITY");
            SqlParameter[] parameters =
            {
                new SqlParameter("@yydh",      SqlDbType.VarChar, 50),
                new SqlParameter("@qymc",      SqlDbType.VarChar, 50),
                new SqlParameter("@yxzj",      SqlDbType.VarChar, 50),
                new SqlParameter("@zjm",       SqlDbType.VarChar, 50),
                new SqlParameter("@is_top",    SqlDbType.Bit,      1),
                new SqlParameter("@is_select", SqlDbType.Bit, 1)
            };
            parameters[0].Value = model.yydh;
            parameters[1].Value = model.qymc;
            parameters[2].Value = model.yxzj;
            parameters[3].Value = model.zjm;
            parameters[4].Value = model.is_top;
            parameters[5].Value = model.is_select;

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

            if (obj == null)
            {
                return(0);
            }
            else
            {
                return(Convert.ToInt32(obj));
            }
        }
Ejemplo n.º 4
0
        /// <summary>
        /// 得到一个对象实体
        /// </summary>
        public Hotel_app.Model.Xyxzj GetModel(int id)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("select  top 1 id,yydh,qymc,yxzj,zjm,is_top,is_select from Xyxzj ");
            strSql.Append(" where id=@id");
            SqlParameter[] parameters =
            {
                new SqlParameter("@id", SqlDbType.Int, 4)
            };
            parameters[0].Value = id;

            Hotel_app.Model.Xyxzj model = new Hotel_app.Model.Xyxzj();
            DataSet ds = DbHelperSQL.Query(strSql.ToString(), parameters);

            if (ds.Tables[0].Rows.Count > 0)
            {
                if (ds.Tables[0].Rows[0]["id"] != null && ds.Tables[0].Rows[0]["id"].ToString() != "")
                {
                    model.id = int.Parse(ds.Tables[0].Rows[0]["id"].ToString());
                }
                if (ds.Tables[0].Rows[0]["yydh"] != null && ds.Tables[0].Rows[0]["yydh"].ToString() != "")
                {
                    model.yydh = ds.Tables[0].Rows[0]["yydh"].ToString();
                }
                if (ds.Tables[0].Rows[0]["qymc"] != null && ds.Tables[0].Rows[0]["qymc"].ToString() != "")
                {
                    model.qymc = ds.Tables[0].Rows[0]["qymc"].ToString();
                }
                if (ds.Tables[0].Rows[0]["yxzj"] != null && ds.Tables[0].Rows[0]["yxzj"].ToString() != "")
                {
                    model.yxzj = ds.Tables[0].Rows[0]["yxzj"].ToString();
                }
                if (ds.Tables[0].Rows[0]["zjm"] != null && ds.Tables[0].Rows[0]["zjm"].ToString() != "")
                {
                    model.zjm = ds.Tables[0].Rows[0]["zjm"].ToString();
                }
                if (ds.Tables[0].Rows[0]["is_top"] != null && ds.Tables[0].Rows[0]["is_top"].ToString() != "")
                {
                    if ((ds.Tables[0].Rows[0]["is_top"].ToString() == "1") || (ds.Tables[0].Rows[0]["is_top"].ToString().ToLower() == "true"))
                    {
                        model.is_top = true;
                    }
                    else
                    {
                        model.is_top = false;
                    }
                }
                if (ds.Tables[0].Rows[0]["is_select"] != null && ds.Tables[0].Rows[0]["is_select"].ToString() != "")
                {
                    if ((ds.Tables[0].Rows[0]["is_select"].ToString() == "1") || (ds.Tables[0].Rows[0]["is_select"].ToString().ToLower() == "true"))
                    {
                        model.is_select = true;
                    }
                    else
                    {
                        model.is_select = false;
                    }
                }
                return(model);
            }
            else
            {
                return(null);
            }
        }