Prechádzať zdrojové kódy

增加发放代金券服务

alexzy 3 rokov pred
rodič
commit
4015797e28
1 zmenil súbory, kde vykonal 18 pridanie a 0 odobranie
  1. 18 0
      src/RechargeServiceInterface.php

+ 18 - 0
src/RechargeServiceInterface.php

@@ -0,0 +1,18 @@
+<?php
+
+namespace Yxy\Service;
+
+interface RechargeServiceInterface
+{
+    /**
+     * 发放代金券
+     * @param $user_id
+     * @param $game_id
+     * @param $promote_id
+     * @param $amount
+     * @param $expire
+     * @param $ip
+     * @return array
+     */
+    public function sendBind($user_id, $game_id, $promote_id, $amount, $expire, $ip): array;
+}