-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Lagt til BarnetilsynMedStønadPeriode (#318)
- Loading branch information
Showing
3 changed files
with
30 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
...t/src/main/kotlin/no/nav/bidrag/transport/behandling/felles/grunnlag/Underholdskostnad.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package no.nav.bidrag.transport.behandling.felles.grunnlag | ||
|
||
import io.swagger.v3.oas.annotations.media.Schema | ||
import no.nav.bidrag.domene.enums.barnetilsyn.Skolealder | ||
import no.nav.bidrag.domene.enums.barnetilsyn.Tilsynstype | ||
import no.nav.bidrag.domene.tid.ÅrMånedsperiode | ||
import java.math.BigDecimal | ||
|
||
@Schema(description = "Underholdskostnad for person") | ||
data class UnderholdskostnadPeriode( | ||
override val periode: ÅrMånedsperiode, | ||
val beløp: BigDecimal, | ||
override val manueltRegistrert: Boolean, | ||
) : GrunnlagPeriodeInnhold | ||
|
||
@Schema(description = "Barnetilsyn med stønad fra Enslig Forsørger") | ||
data class BarnetilsynMedStønadPeriode( | ||
override val periode: ÅrMånedsperiode, | ||
val gjelderBarn: Grunnlagsreferanse, | ||
val beløp: Int?, | ||
val tilsynstype: Tilsynstype?, | ||
val skolealder: Skolealder?, | ||
override val manueltRegistrert: Boolean, | ||
) : GrunnlagPeriodeInnhold |
12 changes: 0 additions & 12 deletions
12
...ain/kotlin/no/nav/bidrag/transport/behandling/felles/grunnlag/UnderholdskostnadPeriode.kt
This file was deleted.
Oops, something went wrong.