@@ -0,0 +1,15 @@
+<?php
+
+namespace Yxy\Service;
+interface PromoteDiscountService
+{
+ /**
+ * 根据渠道ID和游戏ID获取基础折扣以及加点折扣信息
+ * @param int $promote_id
+ * @param int $game_id
+ * @return array
+ */
+ public function discountInfo(int $promote_id, int $game_id): array;
+}