Examples of initGatewayInfo()


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

    if(gatewayCategory != null)
    {
      root.put("gatewayCategory", gatewayCategory);
    }
   
    List<ProductVO> productVOs0 = gatewayService.initGatewayInfo(GatewayConstants.CID_GXTCLX);
   
    if(productVOs0 != null && productVOs0.size() != 0)
    {
      root.put("productVOs0", productVOs0);
    }
View Full Code Here

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

    }
   
    IPObject iPObject = (IPObject) request.getSession().getAttribute("iPObject");
   
    //共享同城(上左)
    List<ProductVO> productVOs1 = gatewayService.initGatewayInfo(GatewayConstants.CID_GXTCSZ,iPObject != null?iPObject.getAreaNode():null);
   
    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_GXTCSY,iPObject != null?iPObject.getAreaNode():null);
   
    if(productVOs2 != null && productVOs2.size() != 0)
    {
      root.put("productVOs2", productVOs2);
    }
View Full Code Here

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

    {
      root.put("productVOs2", productVOs2);
    }
   
    //共享同城(下)
    List<ProductVO> productVOs3 = gatewayService.initGatewayInfo(GatewayConstants.CID_GXTCX,iPObject != null?iPObject.getAreaNode():null);
   
    if(productVOs3 != null && productVOs3.size() != 0)
    {
      root.put("productVOs3", productVOs3);
    }
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.CMP_MPMK);
    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.CID_TLGG);
   
    if(productVOs != null && productVOs.size() != 0)
    {
      root.put("productVOs", productVOs);
    }
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.CMP_MPPPJ);
    root.put("productVOs", productVOs);
   
    /* 将模板和数据模型合并 */
    Writer out = response.getWriter();
    try {
View Full Code Here

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

    //名品列表
//    List<ProductVO> productVOs1 = gatewayService.initGatewayInfo(GatewayConstants.CMP_MPLB);
//    root.put("productVOs1", productVOs1);
   
    //优品列表商品类型
    List<ProductVO> productVOs2 = gatewayService.initGatewayInfo(GatewayConstants.CMP_MPLBLX);
    root.put("productVOs2", productVOs2);
   
    List<List<Product>> results = new ArrayList<List<Product>>();
   
    for(ProductVO vo : productVOs2)
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.CST_HZHB);
   
    if(productVOs != null && productVOs.size() != 0)
    {
      root.put("productVOs", productVOs);
    }
View Full Code Here

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

    Merchant merchant = merchantDao.getMerchantById(Long.parseLong(merchantId));
   
    root.put("merchant", merchant);
   
    IGatewayService gatewayService = (IGatewayService) ac.getBean("gatewayService");
    List<ProductVO> productVOs = gatewayService.initGatewayInfo(GatewayConstants.CST_SJYMGG);
   
    if(productVOs != null && productVOs.size() != 0)
    {
      root.put("productVOs", productVOs);
    }
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.