Commit c3a3d23a by zhiwj

bug

parent c53145cc
......@@ -131,7 +131,7 @@ public class EvaluateExportController extends DownloadUtils {
.collect(Collectors.toList());
StringBuilder sb = new StringBuilder();
for (int i = 0; i < replyDateList.size(); i++) {
sb.append("(").append(i + 1).append(")").append(replyDateList.get(i)).append(" ");
sb.append("(").append(i + 1).append(")").append(replyDateList.get(i)).append("\r\n");
}
resultDTO.setReplyTime(sb.toString());
}
......@@ -144,7 +144,7 @@ public class EvaluateExportController extends DownloadUtils {
.collect(Collectors.toList());
StringBuilder sb = new StringBuilder();
for (int i = 0; i < replyMemberContentList.size(); i++) {
sb.append("(").append(i + 1).append(")").append(replyMemberContentList.get(i)).append(" ");
sb.append("(").append(i + 1).append(")").append(replyMemberContentList.get(i)).append("\r\n");
}
resultDTO.setReplyMemberContent(sb.toString());
}
......@@ -157,7 +157,7 @@ public class EvaluateExportController extends DownloadUtils {
.collect(Collectors.toList());
StringBuilder sb = new StringBuilder();
for (int i = 0; i < replyUserContentList.size(); i++) {
sb.append("(").append(i + 1).append(")").append(replyUserContentList.get(i)).append(" ");
sb.append("(").append(i + 1).append(")").append(replyUserContentList.get(i)).append("\r\n");
}
resultDTO.setReplyUserContent(sb.toString());
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment