Commit 4c58f8c6 by zhiwj

bug

parent c3a3d23a
......@@ -26,9 +26,7 @@ import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import javax.servlet.http.HttpServletRequest;
import java.text.SimpleDateFormat;
import java.util.*;
import java.util.stream.Collectors;
/**
* @author zhiwj
......@@ -129,7 +127,7 @@ public class ProblemExportController extends DownloadUtils {
if (ReplyerTypeEnum.USER.getCode().equals(problemReplyDTO.getReplyerType())) {
j++;
}
sb.append("(").append(j).append(")").append(problemReplyDTO.getReplyContent()).append(" ");
sb.append("(").append(j).append(")").append(problemReplyDTO.getReplyContent()).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