当前的MybatisPlus默认会对空实体内的字段不置空,所以才引出了此种方法,很方便简单:
使用 Wrappers.lambdaUpdate方法就可以解决,方法的源码如下:条件为entity内的值,使用lambdaUpdate去set空的值
举个例子:
costDocService.update(costDoc,Wrappers.<CostDoc>lambdaUpdate()
.set(CostDoc::getRefundAmount,null)
.set(CostDoc::getRefundReason,null)
.eq(CostDoc::getCostId,id)
);
那么条件id为指定id这条数据的RefundAmount、RefundReason字段就置为空了!