PromoteDiscountService.php 309 B

123456789101112131415
  1. <?php
  2. namespace Yxy\Service;
  3. interface PromoteDiscountService
  4. {
  5. /**
  6. * 根据渠道ID和游戏ID获取基础折扣以及加点折扣信息
  7. * @param int $promote_id
  8. * @param int $game_id
  9. * @return array
  10. */
  11. public function discountInfo(int $promote_id, int $game_id): array;
  12. }