...
|
...
|
@@ -53,11 +53,11 @@ public class FavoriteSkuController { |
|
|
* @param vo
|
|
|
* @return
|
|
|
* @throws ServiceException
|
|
|
* http://java-yohoufo-fore.test3.ingress.dev.yohocorp.com/ufo-gateway/?debug=XYZ&method=ufo.user.favoriteSkuCacel&uid=500031826&storageId=10000162
|
|
|
* http://java-yohoufo-fore.test3.ingress.dev.yohocorp.com/ufo-gateway/?debug=XYZ&method=ufo.user.favoriteSkuCancel&uid=500031826&storageId=10000162
|
|
|
*/
|
|
|
@RequestMapping(params = "method=ufo.user.favoriteSkuCacel")
|
|
|
@RequestMapping(params = "method=ufo.user.favoriteSkuCancel")
|
|
|
public ApiResponse cancelFavorite(FavoriteSkuRequestVO vo) throws ServiceException {
|
|
|
logger.info("Begin call ufo.user.favoriteSkuCacel with param is {}", vo);
|
|
|
logger.info("Begin call ufo.user.favoriteSkuCancel with param is {}", vo);
|
|
|
validateRequest(vo, true);
|
|
|
favoriteSkuService.cancelFavorite(vo);
|
|
|
return new ApiResponse.ApiResponseBuilder().message("收藏成功").build();
|
...
|
...
|
|