Skip to content

Commit

Permalink
2022.2.10
Browse files Browse the repository at this point in the history
小bug修复
  • Loading branch information
grui0502 committed Feb 10, 2023
1 parent 43d726f commit 6d70260
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@
target
.mvn
stream-backend.iml

/src/main/resources/application.properties
2 changes: 1 addition & 1 deletion src/main/java/com/db/stream/mapper/GameMapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public interface GameMapper {
//List<Game> getGameInfo();
List<Comment> getGameComm(@Param("game_id") Integer game_id);

@Select("SELECT g_id FROM Game")
@Select("SELECT * FROM Game")
List<Game> getGameNum();

// @Select("SELECT g.g_id, g.g_name FROM Game as g JOIN Library as L on g.g_id = L.g_id JOIN User U on U.u_id = L.u_id WHERE U.u_id == #{u_id}")
Expand Down

0 comments on commit 6d70260

Please sign in to comment.