更新全部角色问题

This commit is contained in:
lvshaohua 2024-04-17 17:30:31 +08:00
parent 6976a96bd7
commit d764eadbc6

View File

@ -223,7 +223,7 @@ public class SaasFeatureResourceServiceImpl implements SaasFeatureResourceServic
if (featureId != null && authType != null) {
featureResourceDao.lambdaUpdate()
.eq(SaasFeatureResource::getId, featureId)
.eq(BaseEntity::getIsDelete,1)
.eq(BaseEntity::getIsDelete,0)
.set(SaasFeatureResource::getAuthType, authType)
.update();
}