This commit is contained in:
wucongxing8150 2025-08-13 09:20:01 +08:00
parent 6814bd7b6e
commit 50b841c68f
7 changed files with 14 additions and 2 deletions

View File

@ -22,6 +22,9 @@ public class UserCommentClinicalArticleVO {
@Schema(description = "用户名称")
private String userName;
@Schema(description = "父级ID")
private Long parentId;
@Schema(description = "评论状态0:禁用 1:正常)")
private Integer status;

View File

@ -22,6 +22,9 @@ public class UserCommentClinicalVideoVO {
@Schema(description = "用户名称")
private String userName;
@Schema(description = "父级ID")
private Long parentId;
@Schema(description = "评论状态0:禁用 1:正常)")
private Integer status;

View File

@ -22,6 +22,9 @@ public class UserCommentExchangeVO {
@Schema(description = "用户名称")
private String userName;
@Schema(description = "父级ID")
private Long parentId;
@Schema(description = "评论状态0:禁用 1:正常)")
private Integer status;

View File

@ -337,7 +337,7 @@ public class CaseExchangeService {
if (isSelected == 1){
LambdaQueryWrapper<CaseClinicalRecordScoreEntity> queryWrapper = new LambdaQueryWrapper<>();
queryWrapper.eq(CaseClinicalRecordScoreEntity::getId, exchangeId);
queryWrapper.eq(CaseClinicalRecordScoreEntity::getType, caseExchange.getUserId());
queryWrapper.eq(CaseClinicalRecordScoreEntity::getType, 3);
queryWrapper.eq(CaseClinicalRecordScoreEntity::getUserId, caseExchange.getUserId());
queryWrapper.eq(CaseClinicalRecordScoreEntity::getScoreType, 6);
CaseClinicalRecordScoreEntity caseClinicalRecordScore = caseClinicalRecordScoreDao.selectOne(queryWrapper);
@ -380,7 +380,7 @@ public class CaseExchangeService {
if (auditStatus == 1){
LambdaQueryWrapper<CaseClinicalRecordScoreEntity> queryWrapper = new LambdaQueryWrapper<>();
queryWrapper.eq(CaseClinicalRecordScoreEntity::getId, exchangeId);
queryWrapper.eq(CaseClinicalRecordScoreEntity::getType, caseExchange.getUserId());
queryWrapper.eq(CaseClinicalRecordScoreEntity::getType, 3);
queryWrapper.eq(CaseClinicalRecordScoreEntity::getUserId, caseExchange.getUserId());
queryWrapper.eq(CaseClinicalRecordScoreEntity::getScoreType, 7);
CaseClinicalRecordScoreEntity caseClinicalRecordScore = caseClinicalRecordScoreDao.selectOne(queryWrapper);

View File

@ -7,6 +7,7 @@
user_comment_clinical_article.comment_id,
user.user_name,
user_comment_clinical_article.status,
user_comment_clinical_article.parent_id,
user_comment_clinical_article.is_sensitive,
user_comment_clinical_article.is_top,
user_comment_clinical_article.like_num,

View File

@ -7,6 +7,7 @@
user_comment_clinical_video.comment_id,
user.user_name,
user_comment_clinical_video.status,
user_comment_clinical_video.parent_id,
user_comment_clinical_video.is_sensitive,
user_comment_clinical_video.is_top,
user_comment_clinical_video.like_num,

View File

@ -7,6 +7,7 @@
user_comment_exchange.comment_id,
user.user_name,
user_comment_exchange.status,
user_comment_exchange.parent_id,
user_comment_exchange.is_sensitive,
user_comment_exchange.is_top,
user_comment_exchange.like_num,