|
@@ -165,9 +165,9 @@ public class LifeDiscountCouponStoreFriendController {
|
|
|
@ApiImplicitParams({@ApiImplicitParam(name = "storeId", value = "当前登录店铺id", dataType = "String", paramType = "query", required = true)
|
|
@ApiImplicitParams({@ApiImplicitParam(name = "storeId", value = "当前登录店铺id", dataType = "String", paramType = "query", required = true)
|
|
|
})
|
|
})
|
|
|
@GetMapping("/getRuleList")
|
|
@GetMapping("/getRuleList")
|
|
|
- private R<List<LifeDiscountCouponFriendRuleVo>> getRuleList(@RequestParam(value = "storeId") String storeId) {
|
|
|
|
|
- log.info("LifeDiscountCouponStoreFriendController.getRuleList?storeId={}", storeId);
|
|
|
|
|
- return R.data(lifeDiscountCouponStoreFriendService.getRuleList(storeId));
|
|
|
|
|
|
|
+ private R<List<LifeDiscountCouponFriendRuleVo>> getRuleList(@RequestParam(value = "storeId") String storeId, String acName, String status) {
|
|
|
|
|
+ log.info("LifeDiscountCouponStoreFriendController.getRuleList?storeId={},name={},status={}", storeId, acName, status);
|
|
|
|
|
+ return R.data(lifeDiscountCouponStoreFriendService.getRuleList(storeId, acName, status));
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@ApiOperation("查询赠券记录")
|
|
@ApiOperation("查询赠券记录")
|