Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package it.aboutbits.springboot.toolbox.type;

import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Getter;
import lombok.experimental.Accessors;
import org.jspecify.annotations.NullMarked;
Expand All @@ -27,6 +28,7 @@ public class ScaledBigDecimal extends Number implements CustomType<BigDecimal>,
public static final ScaledBigDecimal TWO = new ScaledBigDecimal(2);
public static final ScaledBigDecimal TEN = new ScaledBigDecimal(10);

@JsonProperty
private final BigDecimal value;

@SuppressWarnings("unused")
Expand Down