From 177249c76aeea0b4bf8d8816d4994e3b445b45ce Mon Sep 17 00:00:00 2001
From: huanghongfa <huanghongfa123456>
Date: 星期四, 02 九月 2021 10:39:34 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/zzj' into zzj

---
 springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/CommunitySwitchApi.java |   24 +++++++++++++++---------
 1 files changed, 15 insertions(+), 9 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/CommunitySwitchApi.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/CommunitySwitchApi.java
index 3b1d001..7f90e4f 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/CommunitySwitchApi.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/CommunitySwitchApi.java
@@ -1,13 +1,14 @@
 package com.panzhihua.service_community.api;
 
+import javax.annotation.Resource;
+
+import org.springframework.web.bind.annotation.*;
+
 import com.panzhihua.common.model.dtos.community.switchs.SearchCommunityDTO;
 import com.panzhihua.common.model.vos.R;
 import com.panzhihua.service_community.service.ComActService;
+
 import lombok.extern.slf4j.Slf4j;
-import org.springframework.web.bind.annotation.*;
-
-import javax.annotation.Resource;
-
 
 @Slf4j
 @RestController
@@ -19,7 +20,8 @@
 
     /**
      * 查询社区所有列表
-     * @return  社区列表
+     * 
+     * @return 社区列表
      */
     @GetMapping("/community/all/list")
     public R getCommunityAllList() {
@@ -28,8 +30,10 @@
 
     /**
      * 根据名字查询所有社区列表
-     * @param name  社区名字
-     * @return  社区列表
+     * 
+     * @param name
+     *            社区名字
+     * @return 社区列表
      */
     @GetMapping("/community/search/list")
     public R communitySwitchSearchList(@RequestParam(value = "name") String name) {
@@ -38,8 +42,10 @@
 
     /**
      * 根据经纬度以及距离搜索附近社区列表
-     * @param communityDTO  请求参数
-     * @return  社区列表
+     * 
+     * @param communityDTO
+     *            请求参数
+     * @return 社区列表
      */
     @PostMapping("/community/search/distance/list")
     public R communitySwitchSearchDistanceList(@RequestBody SearchCommunityDTO communityDTO) {

--
Gitblit v1.7.1