Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Commit

Permalink
[SELC-5168] feat : changed type of id field to Object (#527)
Browse files Browse the repository at this point in the history
  • Loading branch information
eugenbegiqi authored Jul 10, 2024
1 parent 1b3d8fe commit 1bf381e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,14 @@
@AllArgsConstructor
public class PecNotification {

private String id;
private Object id;
private String institutionId;
private String productId;
private Integer moduleDayOfTheEpoch;
private String digitalAddress;

private OffsetDateTime createdAt;
private OffsetDateTime updatedAt;


}
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
public class PecNotificationEntity {

@Id
private String id;
private Object id;
private String institutionId;
private String productId;
private Integer moduleDayOfTheEpoch;
Expand Down

0 comments on commit 1bf381e

Please sign in to comment.