Pu Zhibing
2025-02-27 b380c7e0d061b5502114ab1214c2a217f7f6ee92
springcloud_k8s_panzhihuazhihuishequ/service_sangeshenbian/src/main/java/com/panzhihua/sangeshenbian/service/ISystemUserService.java
@@ -7,6 +7,8 @@
import com.panzhihua.sangeshenbian.warpper.SystemUserList;
import com.panzhihua.sangeshenbian.warpper.SystemUserListVo;
import java.util.List;
import java.util.Map;
import java.util.Optional;
/**
@@ -26,4 +28,28 @@
    * 根据手机号码查询小程序用户在三个身边的上级角色用户
    */
   Optional<SystemUser> getSystemUserByPhone(String phone);
   /**
    * 获取行政区划数据
    * @param pcode
    * @return
    */
   List<Map<String, Object>> getRegion(String pcode);
   /**
    * 获取街道数据
    * @param areaCode
    * @return
    */
   List<Map<String, Object>> getStreet(String areaCode);
   /**
    * 获取社区数据
    * @param streetId
    * @return
    */
   List<Map<String, Object>> getCommunity(String streetId);
}