浏览代码

增加渠道用户折扣信息查询

alexzy 3 年之前
父节点
当前提交
456669903e
共有 1 个文件被更改,包括 10 次插入0 次删除
  1. 10 0
      src/PromoteDiscountServiceInterface.php

+ 10 - 0
src/PromoteDiscountServiceInterface.php

@@ -12,4 +12,14 @@ interface PromoteDiscountServiceInterface
      */
     public function discountInfo(int $promote_id, int $game_id): array;
 
+    /**
+     * 查询渠道用户折扣信息
+     * @param $promote_id
+     * @param $game_id
+     * @param $user_id
+     * @param mixed $default_discount
+     * @return array
+     */
+    public function rechargeDiscount($promote_id, $game_id, $user_id, $default_discount = false): array;
+
 }