新增了评论1

This commit is contained in:
wucongxing8150 2025-05-23 14:14:26 +08:00
parent f719a1d347
commit fcf9ca6744
4 changed files with 27 additions and 14 deletions

View File

@ -315,14 +315,16 @@ public class CaseClinicalArticleController {
dto.setUserIden(null);
// 获取次级评论
if (dto.getRootId() == null){
List<UserCommentClinicalArticleDto> subComments = userCommentClinicalArticleDao.getClinicalArticleCommentList(
dto.getArticleId(),
dto.getCommentId(),
5
);
if (request.getIsHaveSubComment() == 1){
if (dto.getRootId() == null){
List<UserCommentClinicalArticleDto> subComments = userCommentClinicalArticleDao.getClinicalArticleCommentList(
dto.getArticleId(),
dto.getCommentId(),
5
);
dto.setSubComment(subComments);
dto.setSubComment(subComments);
}
}
}

View File

@ -7,6 +7,7 @@ import com.example.caseData.common.Response;
import com.example.caseData.dao.*;
import com.example.caseData.dto.T;
import com.example.caseData.dto.caseClinicalVideo.CaseClinicalVideoDto;
import com.example.caseData.dto.userCommentClinicalArticle.UserCommentClinicalArticleDto;
import com.example.caseData.dto.userCommentClinicalVideo.UserCommentClinicalVideoDto;
import com.example.caseData.exception.BusinessException;
import com.example.caseData.model.*;
@ -313,14 +314,16 @@ public class CaseClinicalVideoController {
dto.setUserIden(null);
// 获取次级评论
if (dto.getRootId() == null){
List<UserCommentClinicalVideoDto> subComments = userCommentClinicalVideoDao.getClinicalVideoCommentList(
dto.getVideoId(),
dto.getCommentId(),
5
);
if (request.getIsHaveSubComment() == 1){
if (dto.getRootId() == null){
List<UserCommentClinicalVideoDto> subComments = userCommentClinicalVideoDao.getClinicalVideoCommentList(
dto.getVideoId(),
dto.getCommentId(),
5
);
dto.setSubComment(subComments);
dto.setSubComment(subComments);
}
}
}

View File

@ -29,6 +29,10 @@ public class getClinicalArticleCommentPage {
@JsonProperty("root_id")
private String rootId;
// 是否需要子评论(0: 1:)
@JsonProperty("is_have_sub_comment")
private Integer isHaveSubComment;
// 校验分页参数
public void validateForPage() {
// 如果 page 为空设为默认值 1

View File

@ -25,6 +25,10 @@ public class getClinicalVideoCommentPage {
@JsonProperty("root_id")
private String rootId;
// 是否需要子评论(0: 1:)
@JsonProperty("is_have_sub_comment")
private Integer isHaveSubComment;
// 校验分页参数
public void validateForPage() {
// 如果 page 为空设为默认值 1