seven 1 月之前
父节点
当前提交
a8762c3ae4
共有 1 个文件被更改,包括 10 次插入0 次删除
  1. 10 0
      app/Models/League.php

+ 10 - 0
app/Models/League.php

@@ -16,4 +16,14 @@ class League extends BaseModel
 
     const IS_ACTIVE_YES = 1;
     const IS_ACTIVE_NOT = 0;
+
+    // 五大联赛
+    public static $TOP_FIVE_LEAGUE_IDS = [
+        39 => 'Premier League', // 英超
+        71 => 'Serie A', // 意甲
+        140 => 'La Liga', // 西甲
+        78 => 'Bundesliga', // 德甲
+        61 => 'Ligue 1', // 法甲
+    ];
+
 }