Skip to content

Commit

Permalink
TFP-5719 Legger til Dto på ArbeidsforholdInntektsmeldinger records so… (
Browse files Browse the repository at this point in the history
#527)

TFP-5719 Legger til Dto på ArbeidsforholdInntektsmeldinger records som benyttes av formidling
  • Loading branch information
AnjaAalerud authored Mar 6, 2024
1 parent a70467a commit 4505152
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
import java.math.BigDecimal;
import java.util.List;

public record ArbeidsforholdInntektsmeldinger(@NotNull List<@Valid @NotNull ArbeidsforholdInntektsmelding> arbeidsforholdInntektsmelding) {
public record ArbeidsforholdInntektsmeldingerDto(@NotNull List<@Valid @NotNull ArbeidsforholdInntektsmeldingDto> arbeidsforholdInntektsmelding) {

public record ArbeidsforholdInntektsmelding(@NotNull @Pattern(regexp = "\\d{9}|\\d{13}") String arbeidsgiverIdent,
public record ArbeidsforholdInntektsmeldingDto(@NotNull @Pattern(regexp = "\\d{9}|\\d{13}") String arbeidsgiverIdent,
@NotNull @Digits(integer = 5, fraction = 2) @DecimalMin("0.00") @DecimalMax("500.00") BigDecimal stillingsprosent,
@NotNull Boolean erInntektsmeldingMottatt) {}
}
}

0 comments on commit 4505152

Please sign in to comment.