| | |
| | | record.setUid(record.getId()+""); |
| | | MeditationQuestion byId1 = meditationQuestionService.getById(record.getQuestionId()); |
| | | if (byId1!=null){ |
| | | record.setLikeCount(byId1.getLikeCount()); |
| | | record.setContent(byId1.getContent()); |
| | | LocalDateTime replyTime = byId1.getCreateTime(); |
| | | record.setContentTime(replyTime.format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"))); |
| | |
| | | record.setAvatar(data.getAvatar()); |
| | | record.setCellPhone(data.getCellPhone()); |
| | | } |
| | | record.setShowFlag(byId1.getShowFlag()); |
| | | record.setReplyContent(byId1.getReplyContent()); |
| | | } |
| | | AppUser data = remoteAppUserService.getAppUserById(record.getReportUserId().toString()).getData(); |
| | | if (data!=null){ |