fixing bug on transaction instances

This commit is contained in:
2025-10-23 09:10:54 +02:00
parent ed1b05f9b8
commit 1188b5361d
10 changed files with 81 additions and 268 deletions

View File

@@ -40,5 +40,5 @@ public class BaseEntity {
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd'T'HH:mm:ss.SSS")
private LocalDateTime updatedAt; // Or Date, Timestamp
private Boolean deleted;
private Boolean deleted = false;
}