新增了评论1
This commit is contained in:
parent
f719a1d347
commit
fcf9ca6744
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user