Package com.eatle.persistent.pojo.merchant

Examples of com.eatle.persistent.pojo.merchant.UserMerchant


  @Override
  public List<Restaurant> findRestaurantsByUserIdAndMerchantId(Long userId,
      Long merchantId)
  {
    UserMerchant um = selectUserMerchantByUserIdAndMerchantId(userId, merchantId);
    return restaurantService.findByMultiIds(StringUtils.split(um.getManageRestaurantList(), ","));
  }
View Full Code Here

TOP

Related Classes of com.eatle.persistent.pojo.merchant.UserMerchant

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.