mybatis-plus lambdaWrapper

今天用了下mybatis-plus的批量操作,体验了一波lambdaWrapper

mapper.update(null, Wrappers.lambdaUpdate().in(Obj::getSysUserId,sysUserIdList).set(Obj::getIsDelete,EnableEnum.YES.getValue()));

nice!!

当然还有queryWrapper之类的如下图,用到再去了解吧
mybatis-plus lambdaWrapper_第1张图片

你可能感兴趣的:(工具和使用技巧)