Commit b97351ff by zhiwj

咨询建议列表

parent 8b44b10e
......@@ -70,6 +70,8 @@ public class ProblemManageApiServiceImpl implements ProblemManageApiService {
List<ProblemReplyDTO> replyList = problemReplyService.listReply(problemId);
if (replyList == null) {
replyList = new ArrayList<>();
} else {
replyList = new ArrayList<>(replyList);
}
ProblemReplyDTO problemReplyDTO = new ProblemReplyDTO();
problemReplyDTO.setReplyerType(ReplyerTypeEnum.MEMBER.getCode());
......
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