| | |
| | | } |
| | | |
| | | Object birthdayObj = row.get("birthday"); |
| | | playerInfo.setBirthday(birthdayObj != null ? |
| | | playerInfo.setBirthday(birthdayObj != null ? |
| | | (birthdayObj instanceof java.sql.Date ? ((java.sql.Date) birthdayObj).toString() : birthdayObj.toString()) : null); |
| | | playerInfo.setEducation(row.get("education") != null ? row.get("education").toString() : ""); |
| | | Object educationObj = row.get("education"); |
| | | log.info("调试:从数据库查询到的education值: {}", educationObj); |
| | | playerInfo.setEducation(educationObj != null ? educationObj.toString() : ""); |
| | | playerInfo.setIntroduction(row.get("introduction") != null ? row.get("introduction").toString() : ""); |
| | | |
| | | // 构建区域信息 |