Skip to content

Commit

Permalink
GRAD2-2761: districtId is newly added into School Clob.
Browse files Browse the repository at this point in the history
GRAD2-2761: districtId is newly added into School Clob.
  • Loading branch information
infstar committed Dec 24, 2024
1 parent d42312d commit 3ba5cd3
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ public class TraxSchool {
private String minCode;
private String schoolId;
private String schoolName;
private String districtId;
private String districtName;
private String transcriptEligibility;
private String certificateEligibility;
Expand Down Expand Up @@ -47,8 +48,8 @@ public String getPostal() {

@Override
public String toString() {
return "School [minCode=" + minCode + ", schoolId=" + schoolId + ", schoolCategoryLegacyCode=" + schoolCategoryLegacyCode + ", schoolCategoryCode=" + schoolCategoryCode
+ ", schoolName=" + schoolName + ", districtName=" + districtName + ", transcriptEligibility=" + transcriptEligibility + ", certificateEligibility=" + certificateEligibility
return "School [minCode=" + minCode + ", schoolId=" + schoolId + ", schoolName=" + schoolName + ", schoolCategoryCode=" + schoolCategoryCode + ", schoolCategoryLegacyCode=" + schoolCategoryLegacyCode
+ ", districtId=" + districtId + ", districtName=" + districtName + ", transcriptEligibility=" + transcriptEligibility + ", certificateEligibility=" + certificateEligibility
+ ", address1=" + address1 + ", address2=" + address2 + ", city=" + city + ", provCode=" + provCode + ", countryCode=" + countryCode + ", postal=" + postal + ", openFlag=" + openFlag
+ "]";
}
Expand Down

0 comments on commit 3ba5cd3

Please sign in to comment.