代码
public class UserGoodsInfo {
@CollectionField("goods_price")
private BigDecimal goodsPrice = BigDecimal.ZERO;
}
LambdaUpdateChainWrapper<UserGoodsInfo> updateChainWrapper = this.lambdaUpdate();
updateChainWrapper.inc(UserGoodsInfo::getGoodsPrice, price);
代码