|
|
@ -420,29 +420,21 @@ public class ChatMessageServiceImpl implements ChatMessageService {
|
|
|
|
case 1:{
|
|
|
|
case 1:{
|
|
|
|
for (WisdomExamCommentsDto examComment : examComments) {
|
|
|
|
for (WisdomExamCommentsDto examComment : examComments) {
|
|
|
|
builder.append(String.format(finalChatModel.getCycleChats().get(1), count, examComment.getName(),examComment.getTime(), examComment.getClassRate(),examComment.getGradeRate()));
|
|
|
|
builder.append(String.format(finalChatModel.getCycleChats().get(1), count, examComment.getName(),examComment.getTime(), examComment.getClassRate(),examComment.getGradeRate()));
|
|
|
|
if (count < examComments.size()) {
|
|
|
|
count++;
|
|
|
|
count++;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case 2:{
|
|
|
|
case 2:{
|
|
|
|
for (WisdomExamCommentsDto examComment : examComments) {
|
|
|
|
for (WisdomExamCommentsDto examComment : examComments) {
|
|
|
|
builder.append(String.format(finalChatModel.getCycleChats().get(2), count, examComment.getName(),examComment.getTime(), examComment.getGradeRate()));
|
|
|
|
builder.append(String.format(finalChatModel.getCycleChats().get(2), count, examComment.getName(),examComment.getTime(), examComment.getGradeRate()));
|
|
|
|
if (count < examComments.size()) {
|
|
|
|
count++;
|
|
|
|
count++;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
default:{
|
|
|
|
default:{
|
|
|
|
for (WisdomExamCommentsDto examComment : examComments) {
|
|
|
|
for (WisdomExamCommentsDto examComment : examComments) {
|
|
|
|
builder.append(String.format(finalChatModel.getCycleChats().get(0), count, examComment.getName(),
|
|
|
|
builder.append(String.format(finalChatModel.getCycleChats().get(0), count, examComment.getName(),examComment.getTime(), examComment.getScore(), examComment.getScoreRate(),examComment.getRanking()));
|
|
|
|
examComment.getTime(), examComment.getScore(), examComment.getScoreRate(),
|
|
|
|
count++;
|
|
|
|
examComment.getRanking()));
|
|
|
|
|
|
|
|
if (count < examComments.size()) {
|
|
|
|
|
|
|
|
count++;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|