1
0
mirror of https://github.com/pcvolkmer/etl-processor.git synced 2025-04-19 17:26:51 +00:00

chore: use java records

This commit is contained in:
Paul-Christian Volkmer 2024-04-26 12:35:37 +02:00
parent 1672ad8640
commit 3bd7239812

View File

@ -45,11 +45,13 @@ data class Request(
@Embedded.Nullable var report: Report? = null
)
@JvmRecord
data class Report(
val description: String,
val dataQualityReport: String = ""
)
@JvmRecord
data class CountedState(
val count: Int,
val status: RequestStatus,