Package com.iteye.tianshi.web.model.base

Examples of com.iteye.tianshi.web.model.base.TProductInfo


    TShopInfo shop = tShopInfoService.findEntity(shopId);
    order.setShopCode(shop.getShopCode());
    order.setShopName(shop.getShopName());
    shop = null;
   
    TProductInfo product = tProductInfoService.findByProperty("productCode", order.getProductCode()).get(0);
    order.setProductName(product.getProductName());
    return order;
  }
View Full Code Here

TOP

Related Classes of com.iteye.tianshi.web.model.base.TProductInfo

Copyright © 2018 www.massapicom. 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.