From 9d627907c3db735a0671fc8fdd5ae8483be775a2 Mon Sep 17 00:00:00 2001 From: hhhyyq <hhhyyq@163.com> Date: 星期三, 17 三月 2021 00:09:57 +0800 Subject: [PATCH] 房屋租售 --- springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/IndexApi.java | 52 ++++++++++++++++++++++++++++++++++++++++++++++++---- 1 files changed, 48 insertions(+), 4 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/IndexApi.java b/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/IndexApi.java index 8fa9d00..4e63028 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/IndexApi.java +++ b/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/IndexApi.java @@ -1,14 +1,20 @@ package com.panzhihua.applets.api; +import com.panzhihua.applets.weixin.CheckService; import com.panzhihua.common.controller.BaseController; import com.panzhihua.common.model.dtos.PageDTO; +import com.panzhihua.common.model.dtos.community.ComActEasyPhotoCommentDTO; +import com.panzhihua.common.model.dtos.community.PageComActEasyPhotoCommentDTO; +import com.panzhihua.common.model.dtos.community.ComActEasyPhotoCommentUserDTO; import com.panzhihua.common.model.dtos.community.NoticeReadDTO; import com.panzhihua.common.model.vos.LoginUserInfoVO; import com.panzhihua.common.model.vos.R; import com.panzhihua.common.model.vos.advertisement.ComOpsAdvVO; +import com.panzhihua.common.model.vos.community.ComActEasyPhotoCommentVO; import com.panzhihua.common.model.vos.community.ComActEasyPhotoVO; import com.panzhihua.common.model.vos.community.ComActMicroWishVO; import com.panzhihua.common.model.vos.user.NoticeUnReadVO; +import com.panzhihua.common.model.vos.user.SysUserAgreementVO; import com.panzhihua.common.model.vos.user.SysUserNoticeVO; import com.panzhihua.common.service.community.CommunityService; import com.panzhihua.common.service.user.UserService; @@ -37,6 +43,8 @@ private CommunityService communityService; @Resource private UserService userService; + @Resource + private CheckService checkService; @ApiOperation(value = "分页展示社区随手拍",response = ComActEasyPhotoVO.class) @PostMapping("pageeasyphoto") @@ -46,16 +54,19 @@ if (null==communityId||0==communityId) { return R.fail("用户未绑定社区"); } - Long userId = loginUserInfo.getUserId(); comActEasyPhotoVO.setCommunityId(communityId); - comActEasyPhotoVO.setStatus(4); - comActEasyPhotoVO.setLogInUserId(userId); - return communityService.pageEasyPhoto(comActEasyPhotoVO); + comActEasyPhotoVO.setLogInUserId(loginUserInfo.getUserId()); + return communityService.pageEasyPhotoApplets(comActEasyPhotoVO); } @ApiOperation("上传随手拍") @PostMapping("easyphoto") public R addEasyPhoto (@RequestBody @Validated(AddGroup.class) ComActEasyPhotoVO comActEasyPhotoVO){ + // 微信内容审核 + String msg = comActEasyPhotoVO.getDetail(); + if (!checkService.checkMessage(msg)) { + return R.fail("内容违规"); + } LoginUserInfoVO loginUserInfo = this.getLoginUserInfo(); Long communityId = loginUserInfo.getCommunityId(); if (null==communityId||0==communityId) { @@ -74,6 +85,27 @@ public R detailEasyPhoto (@RequestParam("id") Long id){ Long userId = this.getUserId(); return communityService.detailEasyPhoto(id,userId); + } + + @ApiOperation(value = "随手拍--评论--分页查询",response = ComActEasyPhotoCommentVO.class ) + @PostMapping("pagecomacteasyphotocomment") + public R pageComActEasyPhotoComment (@RequestBody PageComActEasyPhotoCommentDTO pageComActEasyPhotoCommentDTO){ + pageComActEasyPhotoCommentDTO.setUserId(this.getUserId()); + return communityService.pageComActEasyPhotoComment(pageComActEasyPhotoCommentDTO); + } + + @ApiOperation(value = "随手拍--评论--新增评论") + @PostMapping("comacteasyphotocomment") + public R addComActEasyPhotoComment (@RequestBody ComActEasyPhotoCommentDTO comActEasyPhotoCommentDTO){ + comActEasyPhotoCommentDTO.setUserId(this.getUserId()); + return communityService.addComActEasyPhotoComment(comActEasyPhotoCommentDTO); + } + + @ApiOperation(value = "随手拍--评论--点赞/取消点赞" ) + @PostMapping("commentsign") + public R commentSign (@RequestBody ComActEasyPhotoCommentUserDTO comActEasyPhotoCommentUserDTO){ + comActEasyPhotoCommentUserDTO.setUserId(this.getUserId()); + return communityService.commentSign(comActEasyPhotoCommentUserDTO); } @ApiOperation("点赞/取消点赞随手拍") @@ -112,6 +144,11 @@ @ApiOperation("发布微心愿") @PostMapping("microwish") public R addMicroWish (@RequestBody @Validated(AddGroup.class) ComActMicroWishVO comActMicroWishVO){ + // 微信内容审核 + String msg = comActMicroWishVO.getDetail(); + if (!checkService.checkMessage(msg)) { + return R.fail("内容违规"); + } LoginUserInfoVO loginUserInfo = this.getLoginUserInfo(); Long communityId = loginUserInfo.getCommunityId(); if (null==communityId||0==communityId) { @@ -178,4 +215,11 @@ return userService.noticeUnreadNum(userId); } + @ApiOperation(value = "获取各种协议",response = SysUserAgreementVO.class) + @GetMapping("agreement") + @ApiImplicitParam(name = "type",value = "1居民端app协议 2网格员端app协议 3商家端app协议 4隐私政策") + public R agreement (@RequestParam("type")Integer type){ + return userService.agreement(type); + } + } -- Gitblit v1.7.1