-
Notifications
You must be signed in to change notification settings - Fork 0
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 #549 from bcgov/feature/GRAD2-2761
GRAD2-2761: initial commit to utilize the school clob data from institute RedisCache in grad-trax-api.
- Loading branch information
Showing
17 changed files
with
432 additions
and
1,432 deletions.
There are no files selected for viewing
29 changes: 29 additions & 0 deletions
29
api/src/main/java/ca/bc/gov/educ/api/graduation/model/dto/District.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,29 @@ | ||
package ca.bc.gov.educ.api.graduation.model.dto; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Data; | ||
import lombok.EqualsAndHashCode; | ||
import lombok.NoArgsConstructor; | ||
import org.springframework.stereotype.Component; | ||
|
||
@Data | ||
@EqualsAndHashCode(callSuper = true) | ||
@Component | ||
@NoArgsConstructor | ||
@AllArgsConstructor | ||
public class District extends BaseModel { | ||
|
||
private String districtId; | ||
private String districtNumber; | ||
private String faxNumber; | ||
private String phoneNumber; | ||
private String email; | ||
private String website; | ||
private String displayName; | ||
private String districtRegionCode; | ||
private String districtStatusCode; | ||
|
||
public String getDistrictName() { | ||
return displayName; | ||
} | ||
} |
57 changes: 0 additions & 57 deletions
57
api/src/main/java/ca/bc/gov/educ/api/graduation/model/dto/DistrictTrax.java
This file was deleted.
Oops, something went wrong.
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
114 changes: 0 additions & 114 deletions
114
api/src/main/java/ca/bc/gov/educ/api/graduation/model/dto/SchoolTrax.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.