-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Conflicts: # src/main/java/yalong/site/frame/panel/about/AboutPanel.java
- Loading branch information
Showing
44 changed files
with
2,191 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package yalong.site.bo; | ||
|
||
import lombok.Data; | ||
|
||
/** | ||
* 游戏地图模式 | ||
* | ||
* @author WuYi | ||
*/ | ||
@Data | ||
public class GameQueue { | ||
private Integer id; | ||
private String name; | ||
private String gameMode; | ||
private Integer mapId; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,4 +18,9 @@ public class LeagueClientBO { | |
* 密钥 | ||
*/ | ||
private String token; | ||
|
||
/** | ||
* 区域 | ||
*/ | ||
private String region; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package yalong.site.bo; | ||
|
||
import lombok.Data; | ||
|
||
/** | ||
* 段位 | ||
* | ||
* @author WuYi | ||
*/ | ||
@Data | ||
public class SGPRank { | ||
/** | ||
* 游戏模式 | ||
*/ | ||
private String queueType; | ||
/** | ||
* 段位 | ||
*/ | ||
private String tier; | ||
/** | ||
* 段位等级 | ||
*/ | ||
private String rank; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package yalong.site.bo; | ||
|
||
import lombok.Data; | ||
|
||
/** | ||
* sgp的召唤术数据姓名为老数据尽量 | ||
* @author WuYi | ||
*/ | ||
@Data | ||
public class SgpSummonerInfoBo { | ||
public Long id; | ||
private String puuid; | ||
private Long accountId; | ||
/** | ||
* 头像id | ||
*/ | ||
private int profileIconId; | ||
private int level; | ||
private int expPoints; | ||
private int levelAndXpVersion; | ||
private String revisionId; | ||
private Long revisionDate; | ||
private Long lastGameDate; | ||
private String privacy; | ||
private int expToNextLevel; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package yalong.site.bo; | ||
|
||
import lombok.Data; | ||
|
||
import java.util.List; | ||
|
||
/** | ||
* @author WuYi | ||
*/ | ||
@Data | ||
public class SpgGames { | ||
private String endOfGameResult; | ||
private Long gameCreation; | ||
private Integer gameDuration; | ||
private Long gameId; | ||
private Long gameStartTimestamp; | ||
private Long gameEndTimestamp; | ||
private String gameMode; | ||
private String gameType; | ||
private String gameVersion; | ||
private Integer mapId; | ||
private List<SpgParticipants> participants; | ||
private String platformId; | ||
private Integer queueId; | ||
private Integer seasonId; | ||
private List<Teams> teams; | ||
|
||
} |
Oops, something went wrong.