|
@@ -28,6 +28,7 @@ import com.zanxiang.game.module.mybatis.entity.GameUser;
|
|
|
import com.zanxiang.game.module.mybatis.entity.GameUserRole;
|
|
|
import com.zanxiang.game.module.mybatis.entity.User;
|
|
|
import com.zanxiang.game.module.mybatis.mapper.UserMapper;
|
|
|
+import com.zanxiang.module.util.JsonUtil;
|
|
|
import com.zanxiang.module.util.bean.BeanUtil;
|
|
|
import com.zanxiang.module.util.encryption.Md5Util;
|
|
|
import com.zanxiang.module.util.exception.BaseException;
|
|
@@ -97,6 +98,10 @@ public class UserServiceImpl extends ServiceImpl<UserMapper, User> implements IU
|
|
|
gameDTO = gameService.getById(gameService.getById(user.getGameId()).getH5GameId());
|
|
|
} else if (type == 2) {
|
|
|
//查询安卓游戏
|
|
|
+ GameDTO gameDTO1 = gameService.getById(user.getGameId());
|
|
|
+
|
|
|
+ log.error("查询到的有 ----------> gameDTO1 : {}", JsonUtil.toString(gameDTO1));
|
|
|
+
|
|
|
gameDTO = gameService.getById(gameService.getById(user.getGameId()).getAndroidGameId());
|
|
|
} else if (type == 3) {
|
|
|
//查询ios游戏
|