|
@@ -56,7 +56,8 @@ public class GameListServiceImpl implements IGameListService {
|
|
|
//不同的数据源
|
|
|
cri.where().andEquals("source_system", dto.getSourceSystem());
|
|
|
}
|
|
|
- cri.where().andInList("id", gameIds);
|
|
|
+ Criteria gameCri = Cnd.cri();
|
|
|
+ gameCri.where().andInList("id", gameIds);
|
|
|
//查询游戏列表
|
|
|
Sql gameListSql = Sqls.create("""
|
|
|
SELECT
|
|
@@ -81,6 +82,7 @@ public class GameListServiceImpl implements IGameListService {
|
|
|
on a.source_system = b.source_system AND a.parent_id = b.id
|
|
|
LEFT JOIN dm_game_order.t_game_super c
|
|
|
on a.source_system = c.source_system AND a.super_game_id = c.id
|
|
|
+ """ + gameCri + """
|
|
|
) a
|
|
|
""" + cri +
|
|
|
"""
|