trying to fix qr
All checks were successful
build-and-deploy / build-deploy (push) Successful in 35s

This commit is contained in:
androidlover5842
2026-01-30 12:56:42 +05:30
parent 669ebf96e3
commit b4c119e8ad
5 changed files with 71 additions and 8 deletions

View File

@@ -50,6 +50,9 @@ class PayuQrRequest(
@Column(name = "response_payload", columnDefinition = "text")
var responsePayload: String? = null,
@Column(name = "expiry_at", columnDefinition = "timestamptz")
var expiryAt: OffsetDateTime? = null,
@Column(name = "created_at", nullable = false, columnDefinition = "timestamptz")
val createdAt: OffsetDateTime = OffsetDateTime.now()
)