|
|
|
@@ -103,6 +103,9 @@ public class WxActivityJoinServiceImpl implements WxActivityJoinService { |
|
|
|
List<WxActivityJoinQuestionAnswer> wxActivityJoinQuestionAnswers = JSONArray.parseArray(answer, WxActivityJoinQuestionAnswer.class); |
|
|
|
for (int i = 0; i < wxActivityJoinQuestionAnswers.size(); i++) { |
|
|
|
WxActivityJoinQuestionAnswer wxActivityJoinQuestionAnswer = wxActivityJoinQuestionAnswers.get(i); |
|
|
|
if (wxActivityJoinQuestionAnswer == null) { |
|
|
|
continue; |
|
|
|
} |
|
|
|
quesAnswer.append("[").append("问题").append(i + 1).append(":").append(wxActivityJoinQuestionAnswer.getQues()) |
|
|
|
.append(" ").append("答案").append(":").append(wxActivityJoinQuestionAnswer.getAnswer()) |
|
|
|
.append("]"); |
|
|
|
|