List<ProductInfoVO> list = dao.queryDocesByCondition(condition);

String value = list.stream().map(productInfoVO -> String.valueOf(productInfoVO.getReqType())).collect(Collectors.joining(","));

拼接的符号使用的是 “,”