|
|
@@ -143,13 +143,13 @@ public class LifeDiscountCouponStoreFriendController {
|
|
|
}
|
|
|
|
|
|
@ApiOperation("查询好友赠券")
|
|
|
- @ApiImplicitParams({@ApiImplicitParam(name = "storeUserId", value = "当前登录店铺用户id", dataType = "String", paramType = "query", required = true)
|
|
|
+ @ApiImplicitParams({@ApiImplicitParam(name = "storeId", value = "当前登录店铺id", dataType = "String", paramType = "query", required = true)
|
|
|
,@ApiImplicitParam(name = "friendStoreUserId", value = "选中好友店铺用户id", dataType = "String", paramType = "query", required = false)
|
|
|
})
|
|
|
@GetMapping("/getReceivedFriendCouponList")
|
|
|
- private R<List<LifeDiscountCouponFriendRuleDetailVo>> getReceivedFriendCouponList(@RequestParam(value = "storeUserId") String storeUserId, @RequestParam(value = "friendStoreUserId",required = false)String friendStoreUserId) {
|
|
|
- log.info("LifeDiscountCouponStoreFriendController.getReceivedFriendCouponList?storeId={},friendStoreUserId={}", storeUserId,friendStoreUserId);
|
|
|
- return R.data(lifeDiscountCouponStoreFriendService.getReceivedFriendCouponList(storeUserId,friendStoreUserId));
|
|
|
+ private R<List<LifeDiscountCouponFriendRuleDetailVo>> getReceivedFriendCouponList(@RequestParam(value = "storeId") String storeId, @RequestParam(value = "friendStoreUserId",required = false)String friendStoreUserId) {
|
|
|
+ log.info("LifeDiscountCouponStoreFriendController.getReceivedFriendCouponList?storeId={},friendStoreUserId={}", storeId,friendStoreUserId);
|
|
|
+ return R.data(lifeDiscountCouponStoreFriendService.getReceivedFriendCouponList(storeId,friendStoreUserId));
|
|
|
}
|
|
|
|
|
|
@ApiOperation("查询赠券规则")
|