From 39d4d8320bdc63e6266d859ce41d8708d5e529d3 Mon Sep 17 00:00:00 2001 From: huanghongfa <huanghongfa123456> Date: 星期五, 23 七月 2021 10:39:11 +0800 Subject: [PATCH] 修改bug --- springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/CommunityApi.java | 38 +++++++++++++++++++++++--------------- 1 files changed, 23 insertions(+), 15 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/CommunityApi.java b/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/CommunityApi.java index 613cb29..e2ba422 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/CommunityApi.java +++ b/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/CommunityApi.java @@ -12,10 +12,7 @@ import com.panzhihua.common.service.user.UserService; import com.panzhihua.common.validated.AddGroup; import com.panzhihua.common.validated.PageGroup; -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiImplicitParam; -import io.swagger.annotations.ApiImplicitParams; -import io.swagger.annotations.ApiOperation; +import io.swagger.annotations.*; import lombok.extern.slf4j.Slf4j; import org.springframework.validation.annotation.Validated; import org.springframework.web.bind.annotation.*; @@ -42,8 +39,6 @@ @ApiOperation(value = "分页查询小区",response =ComMngStructAreaVO.class ) @PostMapping("pagearea") public R pageArea(@RequestBody ComMngStructAreaVO comMngStructAreaVO){ - Long communityId = this.getCommunityId(); - comMngStructAreaVO.setCommunityId(communityId); return communityService.pageArea(comMngStructAreaVO); } @@ -61,17 +56,23 @@ @GetMapping("detaildynamic") @ApiImplicitParam(name ="id",value = "社区动态主键",required = true) public R detailDynamic(@RequestParam("id") Long id){ - Long userId = this.getUserId(); + LoginUserInfoVO loginUserInfo = this.getLoginUserInfoSureNoLogin(); + Long userId = null; + if(loginUserInfo != null){ + userId = loginUserInfo.getUserId(); + } R r = communityService.detailDynamic(id); if (R.isOk(r)) { - //增加浏览记录 - R r1 = communityService.addDynamicUser(id, userId); Object data = r.getData(); ComActDynVO comActDynVO=JSONObject.parseObject(JSONObject.toJSONString(data),ComActDynVO.class); - if (R.isOk(r1)) { - comActDynVO.setIsAdd(1); - }else{ - comActDynVO.setIsAdd(0); + if(userId != null){ + //增加浏览记录 + R r1 = communityService.addDynamicUser(id, userId); + if (R.isOk(r1)) { + comActDynVO.setIsAdd(1); + }else{ + comActDynVO.setIsAdd(0); + } } return R.ok(comActDynVO); } @@ -141,7 +142,7 @@ return R.fail("人员类型错误"); } activitySignVO.setType(type); - return communityService.listActivitySign(activitySignVO); + return communityService.listActivitySigns(activitySignVO); } // @ApiOperation(value = "新增社区动态浏览记录") @@ -160,6 +161,7 @@ public R addVolunteer(@RequestBody @Validated(AddGroup.class) ComMngVolunteerMngVO comMngVolunteerMngVO){ comMngVolunteerMngVO.setState(1); comMngVolunteerMngVO.setCommunityId(this.getCommunityId()); + comMngVolunteerMngVO.setSubmitUserId(this.getUserId()); return communityService.addVolunteer(comMngVolunteerMngVO); } @@ -183,7 +185,7 @@ @ApiOperation(value = "车辆登记") @PostMapping("car/register") - public R addComMngCar(@RequestBody ComMngCarAppletDTO comMngCarAppletDTO) { + public R addComMngCar(@Validated(AddGroup.class) @RequestBody ComMngCarAppletDTO comMngCarAppletDTO) { LoginUserInfoVO loginUserInfo = this.getLoginUserInfo(); Long communityId = loginUserInfo.getCommunityId(); if (null!=communityId && 0!=communityId) { @@ -202,5 +204,11 @@ public R comMngCarList() { return communityService.userComMngCarList(this.getUserId()); } + + @ApiOperation(value = "获取树结构区域信息") + @GetMapping(value = "arealist") + public R getAllArea(@ApiParam(name = "城市编码:四川510000", required = true) @RequestParam(value = "provinceAdcode") Integer provinceAdcode) { + return communityService.getCityTreeByProvinceCode(provinceAdcode); + } } -- Gitblit v1.7.1