Commit 64d17a84 by zhiwj

bug

parent 4c58f8c6
......@@ -124,7 +124,7 @@ public class ProblemExportController extends DownloadUtils {
int j = 0;
StringBuilder sb = new StringBuilder();
for (ProblemReplyDTO problemReplyDTO : replyList) {
if (ReplyerTypeEnum.USER.getCode().equals(problemReplyDTO.getReplyerType())) {
if (ReplyerTypeEnum.MEMBER.getCode().equals(problemReplyDTO.getReplyerType())) {
j++;
}
sb.append("(").append(j).append(")").append(problemReplyDTO.getReplyContent()).append("\r\n");
......
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