@@ -0,0 +1,16 @@
+<?php
+
+namespace Yxy\Service;
+interface GameServiceInterface
+{
+ /**
+ * 根据游戏ID获取游戏信息
+ * @param int $id
+ * @param array $field
+ * @return mixed
+ */
+ public function getById(int $id, array $field = ['*']): array;
+}