-
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 #1580 from bcgov/feature/isfsReport
feature/isfsReport
- Loading branch information
Showing
8 changed files
with
342 additions
and
2 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
40 changes: 40 additions & 0 deletions
40
...ov/educ/studentdatacollection/api/constants/v1/ministryreports/ISFSPreliminaryHeader.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,40 @@ | ||
package ca.bc.gov.educ.studentdatacollection.api.constants.v1.ministryreports; | ||
|
||
import lombok.Getter; | ||
|
||
@Getter | ||
public enum ISFSPreliminaryHeader { | ||
|
||
REPORT_DATE("REPORT_DATE"), | ||
DISTNO("DISTNO"), | ||
SCHLNO("SCHLNO"), | ||
PRIM_FUND("PRIM_FUND"), | ||
ELEM_FUND("ELEM_FUND"), | ||
JUNR_FUND("JUNR_FUND"), | ||
SECN_FUND("SECN_FUND"), | ||
DL_13_FUND("DL_13_FUND"), | ||
DL_14_FUND("DL_14_FUND"), | ||
SL_1_HC("SL_1_HC"), | ||
SL_2_HC("SL_2_HC"), | ||
SL_3_HC("SL_3_HC"), | ||
SL_SES_HC("SL_SES_HC"), | ||
ADP_FTE("ADP_FTE"), | ||
ADE_FTE("ADE_FTE"), | ||
ADJ_FTE("ADJ_FTE"), | ||
ADS_FTE("ADS_FTE"), | ||
DL_AK9_FTE("DL_AK9_FTE"), | ||
DL_AAC_FTE("DL_AAC_FTE"), | ||
ES_KH_FTE("ES_KH_FTE"), | ||
ES_KF_FTE("ES_KF_FTE"), | ||
ES_PR_FTE("ES_PR_FTE"), | ||
ES_EL_FTE("ES_EL_FTE"), | ||
ES_JR_FTE("ES_JR_FTE"), | ||
ES_SR_FTE("ES_SR_FTE"), | ||
DL_13_FTE("DL_13_FTE"), | ||
DL_14_FTE("DL_14_FTE"), | ||
HS_HC("HS_HC"), | ||
IS_POSTED("IS_POSTED"); | ||
|
||
private final String code; | ||
ISFSPreliminaryHeader(String code) { this.code = code; } | ||
} |
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
37 changes: 37 additions & 0 deletions
37
...v/educ/studentdatacollection/api/struct/v1/headcounts/ISFSPrelimHeadcountFinalResult.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,37 @@ | ||
package ca.bc.gov.educ.studentdatacollection.api.struct.v1.headcounts; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
import lombok.NoArgsConstructor; | ||
|
||
@Data | ||
@AllArgsConstructor | ||
@NoArgsConstructor | ||
@Builder | ||
public class ISFSPrelimHeadcountFinalResult { | ||
String specialEducationLevel1Count; | ||
String specialEducationLevel2Count; | ||
String specialEducationLevel3Count; | ||
String specialEducationLevelOtherCount; | ||
|
||
String standardAdultsKto3Fte; | ||
String standardAdults4to7EUFte; | ||
String standardAdults8to10SUFte; | ||
String standardAdults11and12Fte; | ||
|
||
String dLAdultsKto9Fte; | ||
String dLAdults10to12Fte; | ||
|
||
String standardSchoolAgedKHFte; | ||
String standardSchoolAgedKFFte; | ||
String standardSchoolAged1to3Fte; | ||
String standardSchoolAged4to7EUFte; | ||
String standardSchoolAged8to10SUFte; | ||
String standardSchoolAged11and12Fte; | ||
|
||
String dLSchoolAgedKto9Fte; | ||
String dLSchoolAged10to12Fte; | ||
|
||
String totalHomeschoolCount; | ||
} |
26 changes: 26 additions & 0 deletions
26
...bc/gov/educ/studentdatacollection/api/struct/v1/headcounts/ISFSPrelimHeadcountResult.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,26 @@ | ||
package ca.bc.gov.educ.studentdatacollection.api.struct.v1.headcounts; | ||
|
||
public interface ISFSPrelimHeadcountResult extends HeadcountResult{ | ||
String getSpecialEducationLevel1Count(); | ||
String getSpecialEducationLevel2Count(); | ||
String getSpecialEducationLevel3Count(); | ||
String getSpecialEducationLevelOtherCount(); | ||
|
||
String getAdultsKto3Fte(); | ||
String getAdultsKto9Fte(); | ||
String getAdults4to7EUFte(); | ||
String getAdults8to10SUFte(); | ||
String getAdults11and12Fte(); | ||
String getAdults10to12Fte(); | ||
|
||
String getSchoolAgedKHFte(); | ||
String getSchoolAgedKFFte(); | ||
String getSchoolAged1to3Fte(); | ||
String getSchoolAgedKto9Fte(); | ||
String getSchoolAged4to7EUFte(); | ||
String getSchoolAged8to10SUFte(); | ||
String getSchoolAged11and12Fte(); | ||
String getSchoolAged10to12Fte(); | ||
|
||
String getTotalHomeschoolCount(); | ||
} |
Oops, something went wrong.