Package com.vsked.dao

Examples of com.vsked.dao.TbUserRightDAO


    }
   
    if("add".equals(method)){
      String rightName=request.getParameter("rightname");
      //System.out.println(rightName);
      flag=new TbUserRightDAO().add(new TbUserRight(rightName));
    }
   
    if("edit".equals(method)){
      int rightId=Integer.parseInt(request.getParameter("rightId"));
      String rightName=request.getParameter("rightname");
      flag=new TbUserRightDAO().edit(new TbUserRight(rightId,rightName));
    }
   
    if(flag)
    {
      response.sendRedirect("zzmobile/admin/userRightList.jsp")
View Full Code Here

TOP

Related Classes of com.vsked.dao.TbUserRightDAO

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.