Example #1
0
        /// <summary>
        /// 更新一条数据
        /// </summary>
        public bool Update(jdgl_res_head_service.Model.Hhyjb model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("update Hhyjb set ");
            strSql.Append("yydh=@yydh,");
            strSql.Append("qymc=@qymc,");
            strSql.Append("jbxs=@jbxs,");
            strSql.Append("hyrx=@hyrx,");
            strSql.Append("dfjf=@dfjf,");
            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("@jbxs",      SqlDbType.Int,      4),
                new SqlParameter("@hyrx",      SqlDbType.VarChar, 50),
                new SqlParameter("@dfjf",      SqlDbType.Decimal,  9),
                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.jbxs;
            parameters[3].Value = model.hyrx;
            parameters[4].Value = model.dfjf;
            parameters[5].Value = model.is_top;
            parameters[6].Value = model.is_select;
            parameters[7].Value = model.id;

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

            if (rows > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Example #2
0
        /// <summary>
        /// 增加一条数据
        /// </summary>
        public int Add(jdgl_res_head_service.Model.Hhyjb model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("insert into Hhyjb(");
            strSql.Append("yydh,qymc,jbxs,hyrx,dfjf,is_top,is_select)");
            strSql.Append(" values (");
            strSql.Append("@yydh,@qymc,@jbxs,@hyrx,@dfjf,@is_top,@is_select)");
            strSql.Append(";select @@IDENTITY");
            SqlParameter[] parameters =
            {
                new SqlParameter("@yydh",      SqlDbType.VarChar, 50),
                new SqlParameter("@qymc",      SqlDbType.VarChar, 50),
                new SqlParameter("@jbxs",      SqlDbType.Int,      4),
                new SqlParameter("@hyrx",      SqlDbType.VarChar, 50),
                new SqlParameter("@dfjf",      SqlDbType.Decimal,  9),
                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.jbxs;
            parameters[3].Value = model.hyrx;
            parameters[4].Value = model.dfjf;
            parameters[5].Value = model.is_top;
            parameters[6].Value = model.is_select;

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

            if (obj == null)
            {
                return(0);
            }
            else
            {
                return(Convert.ToInt32(obj));
            }
        }
Example #3
0
        /// <summary>
        /// 得到一个对象实体
        /// </summary>
        public jdgl_res_head_service.Model.Hhyjb GetModel(int id)
        {
            StringBuilder strSql = new StringBuilder();

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

            jdgl_res_head_service.Model.Hhyjb model = new jdgl_res_head_service.Model.Hhyjb();
            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]["jbxs"] != null && ds.Tables[0].Rows[0]["jbxs"].ToString() != "")
                {
                    model.jbxs = int.Parse(ds.Tables[0].Rows[0]["jbxs"].ToString());
                }
                if (ds.Tables[0].Rows[0]["hyrx"] != null && ds.Tables[0].Rows[0]["hyrx"].ToString() != "")
                {
                    model.hyrx = ds.Tables[0].Rows[0]["hyrx"].ToString();
                }
                if (ds.Tables[0].Rows[0]["dfjf"] != null && ds.Tables[0].Rows[0]["dfjf"].ToString() != "")
                {
                    model.dfjf = decimal.Parse(ds.Tables[0].Rows[0]["dfjf"].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);
            }
        }