Skip to content

Commit

Permalink
feat(FSADT1-1101): changing birthdate to be localdatetime
Browse files Browse the repository at this point in the history
  • Loading branch information
paulushcgcj committed Jan 10, 2024
1 parent 1e8da19 commit cc23ce4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions legacy/src/main/java/ca/bc/gov/app/dto/ForestClientDto.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package ca.bc.gov.app.dto;

import java.time.LocalDate;
import java.time.LocalDateTime;

public record ForestClientDto(
String clientNumber,
Expand All @@ -9,7 +9,7 @@ public record ForestClientDto(
String legalMiddleName,
String clientStatusCode,
String clientTypeCode,
LocalDate birthdate,
LocalDateTime birthdate,
String clientIdTypeCode,
String clientIdentification,
String registryCompanyTypeCode,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class ForestClientEntity {
@Column("CLIENT_TYPE_CODE")
private String clientTypeCode;
@Column("BIRTHDATE")
private LocalDate birthdate;
private LocalDateTime birthdate;
@Column("CLIENT_ID_TYPE_CODE")
private String clientIdTypeCode;
@Column("CLIENT_IDENTIFICATION ")
Expand Down

0 comments on commit cc23ce4

Please sign in to comment.