Skip to content

Commit

Permalink
Change datatype
Browse files Browse the repository at this point in the history
  • Loading branch information
torchr89 committed Oct 19, 2023
1 parent a43a601 commit c0e3019
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@ package no.nav.syfo.kafka.consumer.domain
import no.nav.syfo.service.domain.AktivitetskravVurdering
import java.time.LocalDate
import java.time.OffsetDateTime
import java.util.UUID

data class KAktivitetskravVurdering(
val uuid: String,
val uuid: UUID,
val personIdent: String,
val createdAt: OffsetDateTime,
val status: String,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ package no.nav.syfo.service.domain

import java.time.LocalDate
import java.time.OffsetDateTime
import java.util.UUID

data class AktivitetskravVurdering(
val uuid: String,
val uuid: UUID,
val personIdent: String,
val createdAt: OffsetDateTime,
val status: String,
Expand Down

0 comments on commit c0e3019

Please sign in to comment.