You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
292 B

5 years ago
5 years ago
  1. <?php
  2. namespace App\Service;
  3. interface CouponRebateServiceInterface
  4. {
  5. /**
  6. * 领取优惠券
  7. */
  8. public function userReceiveCoupon($params);
  9. public function isCouponRebate($user_id);
  10. public function getActiveInfo();
  11. public function couponRebate($order_id);
  12. }