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;
}