fix bug:删除角色分组

This commit is contained in:
陈维伟 2023-09-15 17:55:38 +08:00
parent f699a6049f
commit 08c0d58345

View File

@ -46,7 +46,7 @@ public class SaasRoleGroupDao extends ServiceImpl<SaasRoleGroupMapper, SaasRoleG
public void delete(List<Long> id) {
lambdaUpdate()
.in(BaseEntity::getId,id)
.set(BaseEntity::getIsDelete,id)
.set(BaseEntity::getIsDelete,1l)
.update();
}