Skip to content

Commit

Permalink
GRAD2-2642
Browse files Browse the repository at this point in the history
Update DTOs, entities and related code in GRAD-STUDENT-API
  • Loading branch information
arybakov-cgi committed Sep 25, 2024
1 parent 7ca05f5 commit 18cac3c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

import java.math.BigDecimal;
import java.time.LocalDate;
import java.util.UUID;

import static ca.bc.gov.educ.api.gradstudent.util.EducGradStudentApiConstants.DEFAULT_DATE_FORMAT;

Expand All @@ -31,4 +32,5 @@ public class EdwGraduationSnapshot {
private LocalDate sessionDate;

private String schoolOfRecord;
private UUID schoolOfRecordId;
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

import java.math.BigDecimal;
import java.time.LocalDate;
import java.util.UUID;

@Data
@EqualsAndHashCode(callSuper = false)
Expand Down Expand Up @@ -34,5 +35,7 @@ public class EdwGraduationSnapshotEntity {
private LocalDate sessionDate;
@Column(name = "SCHOOL_OF_RECORD", nullable = true)
private String schoolOfRecord;
@Column(name = "SCHOOL_OF_RECORD_ID", nullable = false)
private UUID schoolOfRecordId;

}

0 comments on commit 18cac3c

Please sign in to comment.