-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #636 from bcgov/grad-release
Grad release 1.17.0
- Loading branch information
Showing
12 changed files
with
569 additions
and
164 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
19 changes: 19 additions & 0 deletions
19
...ca/bc/gov/educ/api/gradstudent/model/dto/messaging/GraduationStudentRecordGradStatus.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package ca.bc.gov.educ.api.gradstudent.model.dto.messaging; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Data; | ||
import lombok.EqualsAndHashCode; | ||
|
||
import java.util.Date; | ||
import java.util.UUID; | ||
|
||
@Data | ||
@AllArgsConstructor | ||
@EqualsAndHashCode(callSuper = false) | ||
public class GraduationStudentRecordGradStatus { | ||
|
||
private UUID studentID; | ||
private String program; | ||
private Date programCompletionDate; | ||
|
||
} |
27 changes: 27 additions & 0 deletions
27
...rc/main/java/ca/bc/gov/educ/api/gradstudent/model/entity/GraduationStudentRecordView.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package ca.bc.gov.educ.api.gradstudent.model.entity; | ||
|
||
import java.time.LocalDateTime; | ||
import java.util.Date; | ||
import java.util.UUID; | ||
|
||
public interface GraduationStudentRecordView { | ||
|
||
public String getProgram(); | ||
public Date getProgramCompletionDate(); | ||
public String getGpa(); | ||
public String getHonoursStanding(); | ||
public String getRecalculateGradStatus(); | ||
public String getSchoolOfRecord(); | ||
public String getStudentGrade(); | ||
public String getStudentStatus(); | ||
public UUID getStudentID(); | ||
public String getSchoolAtGrad(); | ||
public String getRecalculateProjectedGrad(); | ||
public Long getBatchId(); | ||
public String getConsumerEducationRequirementMet(); | ||
public String getStudentCitizenship(); | ||
public Date getAdultStartDate(); | ||
public String getStudentProjectedGradData() ; | ||
public LocalDateTime getCreateDate(); | ||
public LocalDateTime getUpdateDate(); | ||
} |
This file contains 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
This file contains 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
Oops, something went wrong.