From 179c4d64313c9b7572778da4aaaf6c6584fe457d Mon Sep 17 00:00:00 2001
From: mitao <2763622819@qq.com>
Date: 星期二, 20 五月 2025 23:48:08 +0800
Subject: [PATCH] 修改文件上传类型限制

---
 springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/ComAreaTownCommunityApi.java |   36 ++++++++++++++++++++++++++++++++++++
 1 files changed, 36 insertions(+), 0 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/ComAreaTownCommunityApi.java b/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/ComAreaTownCommunityApi.java
new file mode 100644
index 0000000..70eb01a
--- /dev/null
+++ b/springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/ComAreaTownCommunityApi.java
@@ -0,0 +1,36 @@
+package com.panzhihua.applets.api;
+
+
+import com.panzhihua.common.controller.BaseController;
+import com.panzhihua.common.model.vos.R;
+import com.panzhihua.common.model.vos.community.acid.ComAreaCounty;
+import com.panzhihua.common.service.community.CommunityService;
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+import javax.annotation.Resource;
+
+/**
+ * (ComAreaTownCommunity)表控制层
+ * projectName 成都呐喊信息技术有限公司-智慧社区项目
+ * description: 相关功能
+ *
+ * @author zzj
+ * @since 2022-04-10 17:37:33
+ */
+@Api(tags = {"区县联动列表"})
+@RestController
+@RequestMapping("comAreaTownCommunity")
+public class ComAreaTownCommunityApi extends BaseController {
+
+    @Resource
+    private CommunityService communityService;
+    @ApiOperation(value = "列表查询",response = ComAreaCounty.class)
+    @GetMapping("/areaTownCommunity")
+    public R test(){
+       return  communityService.areaTownCommunity("panzhihua",this.getUserId());
+    }
+}

--
Gitblit v1.7.1