Skip to content

Commit

Permalink
Legg til sjablon grunnlagsobjekter (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
ugur93 authored Feb 20, 2024
1 parent e2d9ce5 commit 2089b62
Showing 1 changed file with 26 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package no.nav.bidrag.transport.behandling.felles.grunnlag

import com.fasterxml.jackson.annotation.JsonIgnore
import no.nav.bidrag.domene.enums.sjablon.SjablonTallNavn
import no.nav.bidrag.domene.tid.ÅrMånedsperiode
import java.math.BigDecimal

data class SjablonGrunnlag(
override val periode: ÅrMånedsperiode,
@JsonIgnore
override val manueltRegistrert: Boolean = false,
val sjablon: SjablonTallNavn,
val verdi: BigDecimal,
) : GrunnlagPeriodeInnhold

data class SjablonTrinnvisSkattesatsPeriode(
override val periode: ÅrMånedsperiode,
@JsonIgnore
override val manueltRegistrert: Boolean = false,
val trinnliste: List<SjablonTrinnvisSkattesats>,
) : GrunnlagPeriodeInnhold

data class SjablonTrinnvisSkattesats(
val inntekstgrense: Int,
val sats: BigDecimal,
)

0 comments on commit 2089b62

Please sign in to comment.