美文网首页
mybatis-plus

mybatis-plus

作者: 追风还是少年 | 来源:发表于2023-12-31 22:45 被阅读0次

update条件和set写在同一个wrapper中

        LambdaUpdateWrapper<SysFile> updateWrapper = new LambdaUpdateWrapper();
        updateWrapper.eq(SysFile::getBusinessId, businessId);
        updateWrapper.eq(SysFile::getType, type);
        updateWrapper.set(SysFile::getDeleted,true);
        return update(updateWrapper);

相关文章

网友评论

      本文标题:mybatis-plus

      本文链接:https://www.haomeiwen.com/subject/ufoyndtx.html