Examples of initGatewayInfo()


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

   
    ApplicationContext ac = WebApplicationContextUtils.getWebApplicationContext(this.getServletContext());
    IGatewayService gatewayService = (IGatewayService) ac.getBean("gatewayService");
   
    //商家一
    List<ProductVO> productVOs11 = gatewayService.initGatewayInfo(GatewayConstants.CLP_TJSJ11);
    root.put("productVOs11", productVOs11);
   
    List<ProductVO> productVOs12 = gatewayService.initGatewayInfo(GatewayConstants.CLP_TJSJ12);
    root.put("productVOs12", productVOs12);
   
View Full Code Here

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

   
    //商家一
    List<ProductVO> productVOs11 = gatewayService.initGatewayInfo(GatewayConstants.CLP_TJSJ11);
    root.put("productVOs11", productVOs11);
   
    List<ProductVO> productVOs12 = gatewayService.initGatewayInfo(GatewayConstants.CLP_TJSJ12);
    root.put("productVOs12", productVOs12);
   
    List<ProductVO> productVOs13 = gatewayService.initGatewayInfo(GatewayConstants.CLP_TJSJ13);
    root.put("productVOs13", productVOs13);
   
View Full Code Here

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

    root.put("productVOs11", productVOs11);
   
    List<ProductVO> productVOs12 = gatewayService.initGatewayInfo(GatewayConstants.CLP_TJSJ12);
    root.put("productVOs12", productVOs12);
   
    List<ProductVO> productVOs13 = gatewayService.initGatewayInfo(GatewayConstants.CLP_TJSJ13);
    root.put("productVOs13", productVOs13);
   
    //商家二
    List<ProductVO> productVOs21 = gatewayService.initGatewayInfo(GatewayConstants.CLP_TJSJ21);
    root.put("productVOs21", productVOs21);
View Full Code Here

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

   
    List<ProductVO> productVOs13 = gatewayService.initGatewayInfo(GatewayConstants.CLP_TJSJ13);
    root.put("productVOs13", productVOs13);
   
    //商家二
    List<ProductVO> productVOs21 = gatewayService.initGatewayInfo(GatewayConstants.CLP_TJSJ21);
    root.put("productVOs21", productVOs21);
   
    List<ProductVO> productVOs22 = gatewayService.initGatewayInfo(GatewayConstants.CLP_TJSJ22);
    root.put("productVOs22", productVOs22);
   
View Full Code Here

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

   
    //商家二
    List<ProductVO> productVOs21 = gatewayService.initGatewayInfo(GatewayConstants.CLP_TJSJ21);
    root.put("productVOs21", productVOs21);
   
    List<ProductVO> productVOs22 = gatewayService.initGatewayInfo(GatewayConstants.CLP_TJSJ22);
    root.put("productVOs22", productVOs22);
   
    List<ProductVO> productVOs23 = gatewayService.initGatewayInfo(GatewayConstants.CLP_TJSJ23);
    root.put("productVOs23", productVOs23);
   
View Full Code Here

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

    root.put("productVOs21", productVOs21);
   
    List<ProductVO> productVOs22 = gatewayService.initGatewayInfo(GatewayConstants.CLP_TJSJ22);
    root.put("productVOs22", productVOs22);
   
    List<ProductVO> productVOs23 = gatewayService.initGatewayInfo(GatewayConstants.CLP_TJSJ23);
    root.put("productVOs23", productVOs23);
   
    /* 将模板和数据模型合并 */
    Writer out = response.getWriter();
    try {
View Full Code Here

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

    //良品分类
    GatewayCategory gatewayCategory = gatewayService.findGatewayCategoryById(GatewayConstants.CLP_LPFL);
    root.put("gatewayCategory", gatewayCategory);
   
    //良品分类
    List<ProductVO> productVOs1 = gatewayService.initGatewayInfo(GatewayConstants.CLP_LPFL);
    root.put("productVOs1", productVOs1);
   
    //良品分类商品类型
    List<ProductVO> productVOs2 = gatewayService.initGatewayInfo(GatewayConstants.CLP_LPFLSPLX);
    root.put("productVOs2", productVOs2);
View Full Code Here

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

    //良品分类
    List<ProductVO> productVOs1 = gatewayService.initGatewayInfo(GatewayConstants.CLP_LPFL);
    root.put("productVOs1", productVOs1);
   
    //良品分类商品类型
    List<ProductVO> productVOs2 = gatewayService.initGatewayInfo(GatewayConstants.CLP_LPFLSPLX);
    root.put("productVOs2", productVOs2);
   
    Template temp = getConfiguration().getTemplate("goodprocate.ftl");
   
    /* 将模板和数据模型合并 */
 
View Full Code Here

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

   
    ApplicationContext ac = WebApplicationContextUtils.getWebApplicationContext(this.getServletContext());
    IGatewayService gatewayService = (IGatewayService) ac.getBean("gatewayService");
   
    //热门商品
    List<ProductVO> productVOs1 = gatewayService.initGatewayInfo(GatewayConstants.CID_RMSP);
   
    if(productVOs1 != null && productVOs1.size() != 0)
    {
      root.put("productVOs1", productVOs1);
    }
View Full Code Here

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

      root.put("productVOs1", productVOs1);
    }
   

    //热兑换
    List<ProductVO> productVOs2 = gatewayService.initGatewayInfo(GatewayConstants.CID_SZRTHB);
   
    if(productVOs2 != null && productVOs2.size() != 0)
    {
      root.put("productVOs2", productVOs2);
    }
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.