From 10df7e29b51d6a2efacc83d870856f57d97a9b66 Mon Sep 17 00:00:00 2001
From: yanghui <2536613402@qq.com>
Date: 星期一, 24 十月 2022 13:48:24 +0800
Subject: [PATCH] #feat 修改别名

---
 springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/BcRegionDao.java |   18 ++++++++++++++++--
 1 files changed, 16 insertions(+), 2 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/BcRegionDao.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/BcRegionDao.java
index 8f60fe4..d43dc76 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/BcRegionDao.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/dao/BcRegionDao.java
@@ -2,8 +2,12 @@
 
 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 import com.panzhihua.common.model.dtos.property.CommonPage;
+import com.panzhihua.common.model.vos.community.ProvinceCityReturnVO;
 import org.apache.ibatis.annotations.Mapper;
 import com.panzhihua.service_community.entity.BcRegion;
+import org.apache.ibatis.annotations.Param;
+
+import java.util.List;
 
 /**
  * 行政区划表(BcRegion)表数据库访问层
@@ -18,8 +22,18 @@
 
     /**
      * 姓名查询
-     * @param name
+     * @param province
+     * @param city
+     * @param country
      * @return
      */
-    String selectByName(String name);
+    String selectByName(@Param("province") String province,@Param("city") String city,@Param("county")String country,@Param("town")String town);
+
+    List<ProvinceCityReturnVO> selectFirst();
+
+    List<ProvinceCityReturnVO> selectSecond(String name);
+
+    List<ProvinceCityReturnVO> selectThird(String name);
+
+    List<ProvinceCityReturnVO> selectFourth(String name);
 }

--
Gitblit v1.7.1