-
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.
* ger til klagestatistikk * KTLINT * Legger til innbetaltBeløp og søknadsbarn
- Loading branch information
Showing
2 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
9 changes: 9 additions & 0 deletions
9
...port/src/main/kotlin/no/nav/bidrag/transport/behandling/felles/grunnlag/InnbetaltBeløp.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,9 @@ | ||
package no.nav.bidrag.transport.behandling.felles.grunnlag | ||
|
||
import no.nav.bidrag.domene.ident.Personident | ||
import java.math.BigDecimal | ||
|
||
data class InnbetaltBeløp( | ||
val beløp: BigDecimal, | ||
val søknadsbarn: Personident, | ||
) |
13 changes: 13 additions & 0 deletions
13
...ansport/src/main/kotlin/no/nav/bidrag/transport/behandling/felles/grunnlag/Søknadsbarn.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,13 @@ | ||
package no.nav.bidrag.transport.behandling.felles.grunnlag | ||
|
||
import no.nav.bidrag.domene.ident.Personident | ||
import no.nav.bidrag.domene.tid.ÅrMånedsperiode | ||
|
||
data class Søknadsbarn( | ||
val navn: String, | ||
val fødselsnummer: Personident, | ||
val periode: ÅrMånedsperiode, | ||
val andelForsørget: Double, | ||
val harSammeAdresse: Boolean, | ||
val medIBeregning: Boolean | ||
) : GrunnlagInnhold |