Commit 2cf205dc authored by 施翔轲's avatar 施翔轲

修复定时批量禁用所有过期租户

parent adc24d58
...@@ -23,7 +23,7 @@ public class TenantTimerTask { ...@@ -23,7 +23,7 @@ public class TenantTimerTask {
/** /**
* 每6小时扫描并禁用已过期租户账号 * 每6小时扫描并禁用已过期租户账号
*/ */
@Scheduled(cron = "0 0 0/6 * * *") @Scheduled(cron = "0 0 0/6 * * ?")
public void updateExpiredTenantStatus() { public void updateExpiredTenantStatus() {
log.info("执行定时禁用已过期租户账号(6h/次)"); log.info("执行定时禁用已过期租户账号(6h/次)");
TenantHelper.ignore(tenantService::handleExpiredTenant); TenantHelper.ignore(tenantService::handleExpiredTenant);
......
...@@ -151,7 +151,7 @@ public class ISysTenantPackageServiceImpl implements ISysTenantPackageService { ...@@ -151,7 +151,7 @@ public class ISysTenantPackageServiceImpl implements ISysTenantPackageService {
private void checkPackageIsUsed(List<Long> ids) { private void checkPackageIsUsed(List<Long> ids) {
boolean exists = tenantMapper.exists(new LambdaQueryWrapper<SysTenant>().in(SysTenant::getPackageId, ids)); boolean exists = tenantMapper.exists(new LambdaQueryWrapper<SysTenant>().in(SysTenant::getPackageId, ids));
if (exists) { if (exists) {
throw new ServiceException("租户套餐已被使用"); throw new ServiceException("企业方案已被使用");
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment