Package com.wizriver.entity.beans

Examples of com.wizriver.entity.beans.Blog


 
  //添加博客文章的分类
  public String doAddBlogClass(){
    System.out.println("into doAddBlogClass");
    blogId=Long.parseLong(request.getParameter("blogId")) ;
    Blog blog=blogService.getBlog(blogId);
    blogClass.setBlog(blog);
    blogClassService.addBlogClass(blogClass);
    return "toBlogClassManager";//跳到blog-blogclass.jsp
  }
View Full Code Here


  }
  //修改博客文章分类
  public String doUpdBlogClass(){
    System.out.println("into doupdaBlogClass");
    blogId=Long.parseLong(request.getParameter("blogId")) ;
    Blog blog=blogService.getBlog(blogId);
    blogClass.setBlog(blog);
    blogClassService.updBlogClass(blogClass);
    return "toBlogClassManager";//跳到blog-blogclass.jsp
  }
View Full Code Here

TOP

Related Classes of com.wizriver.entity.beans.Blog

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.