@@ -0,0 +1,14 @@
+<?php
+
+namespace Yxy\Service;
+interface GameLevelServiceInterface
+{
+ /**
+ * 根据限制等级获取游戏限制信息
+ * @param $id
+ * @param int $promote_id
+ * @return array
+ */
+ public function gameLimitByLevelId($id, int $promote_id = 0): array;
+}