Skip to content

Commit

Permalink
add scheduleCode to DwCensus
Browse files Browse the repository at this point in the history
  • Loading branch information
jaroldwong committed Jun 13, 2024
1 parent faa309c commit 602e69e
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/main/java/edu/ucdavis/dss/dw/dto/DwCensus.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import static edu.ucdavis.dss.ipa.api.helpers.Utilities.isNumeric;

public class DwCensus {
String courseNumber, subjectCode, snapshotCode, sequenceNumber, crn, termCode;
String courseNumber, subjectCode, snapshotCode, sequenceNumber, crn, termCode, scheduleCode;
long currentEnrolledCount, maxEnrollmentCount, waitCount, currentAvailableSeatCount, availableWaitCount, studentCount;

public String getCourseNumber() {
Expand Down Expand Up @@ -102,6 +102,14 @@ public void setStudentCount(long studentCount) {
this.studentCount = studentCount;
}

public String getScheduleCode() {
return scheduleCode;
}

public void setScheduleCode(String scheduleCode) {
this.scheduleCode = scheduleCode;
}

/**
* @return First letter for lettered sections or string of numbers for numeric sections.
*/
Expand Down

0 comments on commit 602e69e

Please sign in to comment.