feat: 微信公众号扫码登录完成

This commit is contained in:
landaiqing
2024-06-27 23:46:31 +08:00
parent 67362ad6b9
commit 77bba1a754
87 changed files with 2764 additions and 534 deletions

View File

@@ -13,7 +13,7 @@ import java.util.List;
/**
* @Classname GlobalConfig
* @BelongsProject: schisandra-cloud-storage
* @BelongsPackage: com.schisandra.auth.application.config
* @BelongsPackage: com.schisandra.auth.application.common
* @Author: schisandra
* @CreateTime: 2024-02-16 15:57
* @Description: MVC全局处理

View File

@@ -55,9 +55,9 @@ public class SchisandraOssMinioController {
Result result = minioOssConfiguration.minioOssClient(userId);
if (result.getSuccess()) {
log.info("用户: " + userId + "-> minio 初始化完成!");
log.info("用户: {}-> minio 初始化完成!", userId);
} else {
log.error("用户: " + userId + "-> minio 初始化完成!");
log.error("用户: {}-> minio 初始化完成!", userId);
}
}
@@ -135,7 +135,7 @@ public class SchisandraOssMinioController {
log.error("容器获取失败!");
return null;
}
return Result.ok(bean.getBaseInfo(fileName));
return Result.ok(bean.getInfo(fileName,true));
}
@GetMapping("getAllMinioInfo")

View File

@@ -8,7 +8,7 @@ import org.springframework.context.annotation.Configuration;
/**
* @Classname MyBatisFlexConfiguration
* @BelongsProject: schisandra-cloud-storage
* @BelongsPackage: com.schisandra.oss.infra.config
* @BelongsPackage: com.schisandra.oss.infra.common
* @Author: landaiqing
* @CreateTime: 2024-05-31 16:14
* @Description: Mybatis flex 配置类