MyBatis Plus返回String的方法有多種,取決于你想要在什么情況下使用。
String result = mapper.selectOne(queryWrapper).toString();
List<String> resultList = mapper.selectList(queryWrapper).stream().map(Object::toString).collect(Collectors.toList());
List<Map<String, Object>> resultMapList = mapper.selectMaps(queryWrapper);
List<String> resultList = resultMapList.stream().map(map -> map.get("columnName").toString()).collect(Collectors.toList());
這些只是一些常見的用法示例,根據你的具體需求可能會有其他更適合的方法。