|
@@ -179,6 +179,10 @@ public class PlayerDataServiceImpl implements IPlayerDataService {
|
|
if (vo.getGameCategoryId() != null) {
|
|
if (vo.getGameCategoryId() != null) {
|
|
vo.setGameCategoryName(GameCategoryEnum.getNameByCategory(vo.getGameCategoryId()));
|
|
vo.setGameCategoryName(GameCategoryEnum.getNameByCategory(vo.getGameCategoryId()));
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ if ("null".equals(vo.getMobile())) {
|
|
|
|
+ vo.setMobile(null);
|
|
|
|
+ }
|
|
return vo;
|
|
return vo;
|
|
}).collect(Collectors.toList());
|
|
}).collect(Collectors.toList());
|
|
|
|
|