Pu Zhibing
2025-02-27 b380c7e0d061b5502114ab1214c2a217f7f6ee92
springcloud_k8s_panzhihuazhihuishequ/service_sangeshenbian/src/main/java/com/panzhihua/sangeshenbian/dao/SystemUserMapper.java
@@ -9,6 +9,9 @@
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
import java.util.Map;
/**
 * @author zhibing.pu
 * @Date 2025/2/18 22:29
@@ -22,4 +25,27 @@
    * @return
    */
   IPage<SystemUserListVo> list(Page page, @Param("accountLevel") Integer accountLevel, @Param("query") SystemUserList query);
   /**
    * 获取行政区划数据
    * @param pcode
    * @return
    */
   List<Map<String, Object>> getRegion(@Param("pcode") String pcode);
   /**
    * 获取街道数据
    * @param areaCode
    * @return
    */
   List<Map<String, Object>> getStreet(@Param("areaCode") String areaCode);
   /**
    * 获取社区数据
    * @param streetId
    * @return
    */
   List<Map<String, Object>> getCommunity(@Param("streetId") String streetId);
}