-
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.
WIP: Lage endepunkt for vikrsomhetsstatistikk
Co-authored-by: Per-Christian Nielsen <per-christian.nielsen@nav.no>
- Loading branch information
1 parent
3b5192f
commit 12c530b
Showing
4 changed files
with
104 additions
and
5 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
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
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
19 changes: 19 additions & 0 deletions
19
src/main/kotlin/no/nav/lydia/sykefraversstatistikk/domene/VirksomhetsstatistikkSiden2019.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,19 @@ | ||
package no.nav.lydia.sykefraversstatistikk.domene | ||
|
||
import kotlinx.serialization.Serializable | ||
|
||
@Serializable | ||
data class VirksomhetsstatistikkSiden2019( | ||
val orgnr: String, | ||
val kvartalliste : List<Virksomhetsstatistikk>, | ||
val årsliste : List<Virksomhetsstatistikk>, | ||
) | ||
|
||
@Serializable | ||
data class Virksomhetsstatistikk ( | ||
val orgnr: String, | ||
val kvartal : Int, | ||
val årstall : Int, | ||
val sykefraværsprosent : Double, | ||
val maskert : Boolean | ||
) |