Not sure where you want to use it for. To communic...
# spring
g
Not sure where you want to use it for. To communicate with postgres I used classes like, which worked
Copy code
@Entity
@Table(name = "cac")
data class Cac(@Id
               val uuid: UUID,
               val iban: String?,
               val token: String?,
               val type: String?,
               val reason: String?,
               val created_at: LocalDateTime)