Examples of ShoppingInfo


Examples of com.lgx8.gateway.entities.ShoppingInfo

    return info;
  }

  @Transactional
  public ShoppingInfo updateShoppingInfo(Long id, Boolean isUsed) {
    ShoppingInfo info = this.getHibernateTemplate().get(ShoppingInfo.class, id);
    if(info != null)
    {
      info.setIsUsed(isUsed);
      this.getHibernateTemplate().update(info);
    }
    return info;
  }
View Full Code Here

Examples of com.lgx8.gateway.entities.ShoppingInfo

                    i++;
                  }
                 
                  if(flag)
                  {
                    ShoppingInfo info = new ShoppingInfo();
                    info.setOrdersId(orderId);
                    info.setIsUsed(false);
                    info.setMobile(user.getMobile());
                    info.setOrderTime(order.getConfirmtime());
                    info.setTradeTime(new Date());
                    info.setTradeNode(System.currentTimeMillis()+"");
                    info.setContent(content);
                   
                    this.shoppingInfoDao.createShoppingInfo(info);
                   
                    //尊敬的乐共享会员,您已成功兑换***的体验*次,请体验时出示此信息。祝您体验愉快!客服电话400-8866756
                    //尊敬的会员,您在乐共享商城兑换的***订单号为*****,请您凭本信息兑换领取,感谢您对乐共享的支持。   【乐共享】
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.