1111
This commit is contained in:
parent
6814bd7b6e
commit
50b841c68f
@ -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;
|
||||
|
||||
|
||||
@ -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;
|
||||
|
||||
|
||||
@ -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;
|
||||
|
||||
|
||||
@ -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);
|
||||
|
||||
@ -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,
|
||||
|
||||
@ -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,
|
||||
|
||||
@ -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,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user