add creation fields to AccountPaymentDTO#17
Merged
marioserrano09 merged 2 commits intomasterfrom Sep 6, 2025
Merged
Conversation
…tionTime, creationTimestamp, and creator Signed-off-by: Mario Serrano <mario@dynamiasoluciones.com>
Signed-off-by: Mario Serrano <mario@dynamiasoluciones.com>
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR adds creation tracking fields to the AccountPaymentDTO class and updates the project version from 3.4.3 to 3.4.4 across all modules.
- Adds four new creation-related fields to AccountPaymentDTO: creationDate, creationTime, creationTimestamp, and creator
- Updates version from 3.4.3 to 3.4.4 across all Maven POM files in the project
Reviewed Changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| sources/api/src/main/java/tools/dynamia/modules/saas/api/dto/AccountPaymentDTO.java | Adds creation tracking fields and their getter/setter methods |
| sources/ui/pom.xml | Updates parent and artifact version to 3.4.4 |
| sources/remote/pom.xml | Updates parent and dependency versions to 3.4.4 |
| sources/pom.xml | Updates parent artifact version to 3.4.4 |
| sources/jpa/pom.xml | Updates parent and dependency versions to 3.4.4 |
| sources/core/pom.xml | Updates parent, artifact, and dependency versions to 3.4.4 |
| sources/api/pom.xml | Updates parent and artifact versions to 3.4.4 |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
Comment on lines
+33
to
+36
| private Date creationDate; | ||
| private Date creationTime; | ||
|
|
||
| private Date creationTimestamp; |
There was a problem hiding this comment.
Using java.util.Date is discouraged in modern Java. Consider using java.time.LocalDateTime or java.time.Instant for better type safety and immutability.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.