查询点赞数方法修改
This commit is contained in:
parent
0aafc5bf89
commit
c152686998
@ -55,7 +55,7 @@ public class SwaggerConfig implements WebMvcConfigurer {
|
||||
private ApiInfo apiInfo(){
|
||||
return new ApiInfoBuilder()
|
||||
.title("林风社交论坛开源版接口文档")
|
||||
.description("林风社交论坛项目开源版接口文档 官网 https://net.linfeng.tech")
|
||||
.description("林风社交论坛项目开源版接口文档 官网:https://net.linfeng.tech")
|
||||
.contact(new Contact("linfeng","http:localhost:8080/doc.html","linfengtech001@163.com"))
|
||||
.version(version)
|
||||
.build();
|
||||
|
@ -80,7 +80,6 @@ public class CategoryController {
|
||||
@ApiOperation("分类修改")
|
||||
public R update(@RequestBody CategoryEntity category){
|
||||
categoryService.updateCategory(category);
|
||||
|
||||
return R.ok();
|
||||
}
|
||||
|
||||
|
@ -31,8 +31,6 @@ public interface CommentService extends IService<CommentEntity> {
|
||||
|
||||
PageUtils queryPage(Map<String, Object> params);
|
||||
|
||||
Integer getCountByTopicId(Integer id);
|
||||
|
||||
void deleteByAdmin(List<Long> longs);
|
||||
|
||||
Integer getCountByPostId(Integer id);
|
||||
|
@ -64,12 +64,6 @@ public class CommentServiceImpl extends ServiceImpl<CommentDao, CommentEntity> i
|
||||
return new PageUtils(page);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Integer getCountByTopicId(Integer id) {
|
||||
return baseMapper.selectCount(new LambdaQueryWrapper<CommentEntity>()
|
||||
.eq(CommentEntity::getStatus, Constant.COMMENT_NORMAL)
|
||||
.eq(CommentEntity::getPostId, id));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
@ -94,7 +88,8 @@ public class CommentServiceImpl extends ServiceImpl<CommentDao, CommentEntity> i
|
||||
public Integer getCountByPostId(Integer id) {
|
||||
return this.lambdaQuery()
|
||||
.eq(CommentEntity::getStatus, Constant.COMMENT_NORMAL)
|
||||
.eq(CommentEntity::getPostId, id).count();
|
||||
.eq(CommentEntity::getPostId, id)
|
||||
.count();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -78,7 +78,7 @@ public class PostServiceImpl extends ServiceImpl<PostDao, PostEntity> implements
|
||||
PostListResponse response=new PostListResponse();
|
||||
BeanUtils.copyProperties(l,response);
|
||||
response.setCollectionCount(postCollectionService.collectCount(response.getId()));
|
||||
response.setCommentCount(commentService.getCountByTopicId(response.getId()));
|
||||
response.setCommentCount(commentService.getCountByPostId(response.getId()));
|
||||
response.setUserInfo(appUserService.getById(response.getUid()));
|
||||
response.setMedia(JsonUtils.JsonToList(l.getMedia()));
|
||||
responseList.add(response);
|
||||
@ -286,7 +286,7 @@ public class PostServiceImpl extends ServiceImpl<PostDao, PostEntity> implements
|
||||
PostListResponse response=new PostListResponse();
|
||||
BeanUtils.copyProperties(l,response);
|
||||
response.setCollectionCount(postCollectionService.collectCount(response.getId()));
|
||||
response.setCommentCount(commentService.getCountByTopicId(response.getId()));
|
||||
response.setCommentCount(commentService.getCountByPostId(response.getId()));
|
||||
response.setUserInfo(appUserService.getById(response.getUid()));
|
||||
if (uid==0){
|
||||
response.setIsCollection(false);
|
||||
|
@ -87,7 +87,7 @@ linfeng:
|
||||
oss:
|
||||
# 文件大小用户端和后台管理端 单位M
|
||||
max-size: 30
|
||||
admin-max-size: 10
|
||||
admin-max-size: 30
|
||||
|
||||
# 是否开启短信验证码 todo
|
||||
sms:
|
||||
|
@ -8,6 +8,6 @@
|
||||
|
||||
欢迎使用林风社交论坛项目开源版后端服务
|
||||
官网: https://net.linfeng.tech
|
||||
Copyright (c) 2021-2023 linfeng all rights reserved.
|
||||
Copyright (c) 2021-2024 linfeng all rights reserved.
|
||||
|
||||
==============================================================================================================================================
|
Loading…
Reference in New Issue
Block a user