From 5b88589584bb2b61b481ade592f6f8106556782d Mon Sep 17 00:00:00 2001 From: huanghongfa <18228131219@163.com> Date: 星期一, 14 十二月 2020 17:29:44 +0800 Subject: [PATCH] 社区管理数据库模型建立完成 --- springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java | 17 +++++++++++++++++ 1 files changed, 17 insertions(+), 0 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java index 1d53a61..99c7d8a 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java +++ b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java @@ -209,4 +209,21 @@ */ @PostMapping("putmicrowish") R putMicroWish(@RequestBody ComActMicroWishVO comActMicroWishVO); + + /** + * 新增社区动态浏览记录 + * @param id 动态主键 + * @param userId 登录用户id + * @return 新增结果 + */ + @PostMapping("adddynamicuser") + R addDynamicUser(@RequestParam("id") Long id, @RequestParam("userId")Long userId); + + /** + * 审核、反馈随手拍 + * @param comActEasyPhotoVO 操作参数 + * @return 操作结果 + */ + @PostMapping("puteasyphotostatus") + R putEasypHotoStatus(@RequestBody ComActEasyPhotoVO comActEasyPhotoVO); } -- Gitblit v1.7.1