Package com.lgx8.gateway.service

Examples of com.lgx8.gateway.service.IGatewayService.deleteCategory()


        if(category!=null&&category.getChilds().size()>0) {
          PrintWriter pw = response.getWriter();
          pw.write("0:请先删除子类!");
          return;
        }
        gatewayService.deleteCategory(Long.parseLong(id));
        List<Category> categorys = (List<Category>) getServletContext().getAttribute("categorys");
//        categorys.clear();
//        categorys.addAll(gatewayService.findAllCategory());
       
        getServletContext().setAttribute("categorys", categorys);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.