//发表回复
        public static int addbcb(Back_Comment_Back bcb)
        {
            string sql = "insert into Back_Comment_Back values(@BCB_Content,@BCB_Time,@BCB_Users_Name,@BCBID)";

            SqlParameter[] sp = new SqlParameter[]
            {
                new SqlParameter("@BCB_Content", bcb.BCB_Comment1),
                new SqlParameter("@BCB_Time", bcb.BCB_Time1),
                new SqlParameter("@BCB_Users_Name", bcb.BCB_Users_Name1),
                new SqlParameter("@BCBID", bcb.BCBID1)
            };
            return(DBHelper.GetExcuteNonQuery(sql, sp));
        }
 //增加回复
 public static int addbcb(Back_Comment_Back bcb)
 {
     return(Back_Comment_BackDal.addbcb(bcb));
 }