mitao
2025-03-03 d2807bf6fa32403ece70ea0fa8f224bdff149392
springcloud_k8s_panzhihuazhihuishequ/service_sangeshenbian/src/main/java/com/panzhihua/sangeshenbian/service/impl/SystemUserServiceImpl.java
@@ -42,7 +42,7 @@
    * @return
    */
   @Override
   public Optional<SystemUser> getSystemUserByPhone(String phone) {
   public Optional<SystemUser> getSystemUserAdminByPhone(String phone) {
      if (StringUtils.isBlank(phone)) {
         return Optional.empty();
      }
@@ -51,8 +51,14 @@
            .eq(SystemUser::getIsAdmin, 1).last("LIMIT 1").oneOpt();
   }
   
   @Override
   public Optional<SystemUser> getSystemUserByPhone(String phone) {
      if (StringUtils.isBlank(phone)) {
         return Optional.empty();
      }
      return this.lambdaQuery()
            .eq(SystemUser::getPhone, phone).ne(SystemUser::getStatus, 3).last("LIMIT 1").oneOpt();
   }
   
   /**
    * 获取行政区划数据