Examples of initGatewayInfo()


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

    {
      root.put("gatewayCategory", gatewayCategory);
    }
   
    //共享优品
    List<ProductVO> productVOs = gatewayService.initGatewayInfo(GatewayConstants.CID_GXYP);
   
    if(productVOs != null && productVOs.size() != 0)
    {
      root.put("productVOs", productVOs);
    }
View Full Code Here

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

   
    GatewayCategory gatewayCategory = gatewayService.findGatewayCategoryById(GatewayConstants.CTC_TCSJ);
    root.put("gatewayCategory", gatewayCategory);
   
    //同城商家类型
    List<ProductVO> productVOs = gatewayService.initGatewayInfo(GatewayConstants.CTC_TCSJLX);
    root.put("productVOs", productVOs);
   
//    String orgId = request.getParameter("orgId");
   
    IPObject iPObject = (IPObject) request.getSession().getAttribute("iPObject");
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> productVOs = gatewayService.initGatewayInfo(GatewayConstants.CSP_SPMK11);
    root.put("productVOs", productVOs);
   
    String pageno = request.getParameter("pageno");
   
    String brandid = request.getParameter("brandid");
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> productVOs = gatewayService.initGatewayInfo(GatewayConstants.CSP_SPMK2);
    root.put("productVOs", productVOs);
   
    /* 将模板和数据模型合并 */
    Writer out = response.getWriter();
    try {
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> productVOs = gatewayService.initGatewayInfo(GatewayConstants.CSP_SPMK1);
    root.put("productVOs", productVOs);
   
    /* 将模板和数据模型合并 */
    Writer out = response.getWriter();
    try {
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.CST_XSSL);
   
    if(productVOs1 != null && productVOs1.size() != 0)
    {
      root.put("productVOs1", productVOs1);
    }
View Full Code Here

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

    {
      root.put("gatewayCategory", gatewayCategory);
    }
   
    //共享良品
    List<ProductVO> productVOs1 = gatewayService.initGatewayInfo(GatewayConstants.CID_GXLP);
   
    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_ZXLP);
   
    if(productVOs2 != null && productVOs2.size() != 0)
    {
      root.put("productVOs2", productVOs2);
    }
View Full Code Here

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

    {
      root.put("gatewayCategory", gatewayCategory);
    }
   
    //新品推荐
    List<ProductVO> productVOs1 = gatewayService.initGatewayInfo(GatewayConstants.CID_XPTJ);
   
    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);
    }
   
    //新品推荐2
    List<ProductVO> productVOs2 = gatewayService.initGatewayInfo(GatewayConstants.CID_XPTJ2);
   
    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.