fix: 删除初始化setid问题

This commit is contained in:
sjm
2024-07-17 14:55:03 +08:00
parent 7ff0caaecb
commit 006f9367f1
4 changed files with 0 additions and 4 deletions

View File

@@ -111,7 +111,6 @@ public class SchisandraOssAliController {
Preconditions.checkNotNull(userId, "用户id不能为空");
SchisandraOssAliBO bo = new SchisandraOssAliBO();
bo.setId(Id);
bo.setUserId(userId);
bo.setStatus(String.valueOf(true));
if (schisandraOssAliDomainService.update(bo)) {
return aliOssConfiguration.aliOssClient(userId);

View File

@@ -128,7 +128,6 @@ public class SchisandraOssMinioController {
SchisandraOssMinioBO bo = new SchisandraOssMinioBO();
bo.setId(Id);
bo.setUserId(userId);
bo.setStatus(String.valueOf(true));
if (schisandraOssMinioDomainService.update(bo)) {
return minioOssConfiguration.minioOssClient(userId);

View File

@@ -349,7 +349,6 @@ public class SchisandraOssQiniuController {
Preconditions.checkNotNull(userId, "用户id不能为空");
SchisandraOssQiniuBO bo = new SchisandraOssQiniuBO();
bo.setId(Id);
bo.setUserId(userId);
bo.setStatus(String.valueOf(true));
if (schisandraOssQiniuDomainService.update(bo)) {
return qiNiuOssConfiguration.qiNiuOssClient(userId);

View File

@@ -115,7 +115,6 @@ public class SchisandraOssTencentController {
Preconditions.checkNotNull(userId, "用户id不能为空");
SchisandraOssTencentBO bo = new SchisandraOssTencentBO();
bo.setId(Id);
bo.setUserId(userId);
bo.setStatus(String.valueOf(true));
if (schisandraOssTencentDomainService.update(bo)) {
return tencentOssConfiguration.tencentOssClient(userId);