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.

23 lines
534 B

5 years ago
  1. <?php
  2. namespace App\Service\v3\Interfaces;
  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 tieCouponActive($couponActivity,$couponForward,$couponRepay);
  12. public function couponRebate($order_id);
  13. public function couponRebateInTask($order_id);
  14. public function clearSsdbCouponReceiveByName($activity, $userId, $get = 0, $isAll = 0);
  15. }