...
|
...
|
@@ -41,7 +41,7 @@ public class FavoriteController { |
|
|
* @throws ServiceException
|
|
|
*/
|
|
|
@RequestMapping(params = "method=ufo.user.favoriteList")
|
|
|
public ApiResponse listFavorite(FavoriteRequestVO vo) throws ServiceException {
|
|
|
public com.yohoufo.common.ApiResponse listFavorite(FavoriteRequestVO vo) throws ServiceException {
|
|
|
logger.info("Begin call ufo.user.favoriteList with param is {}", vo);
|
|
|
validateRequest(vo,false);
|
|
|
|
...
|
...
|
@@ -58,8 +58,7 @@ public class FavoriteController { |
|
|
int page=1;
|
|
|
|
|
|
//调用商品接口返回商品list
|
|
|
ApiResponse productApiResponse = serviceCaller.call("ufo.product.search.list",
|
|
|
ApiResponse.class,
|
|
|
com.yohoufo.common.ApiResponse productApiResponse = serviceCaller.call("ufo.product.search.list",
|
|
|
type,null, product_id,null
|
|
|
,null,null,null,null,null,null,null
|
|
|
,limit,page
|
...
|
...
|
|