|
@@ -0,0 +1,48 @@
|
|
|
+package com.keao.edu.user.dto;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Author Joburgess
|
|
|
+ * @Date 2020.08.12
|
|
|
+ */
|
|
|
+public class OrganExamRegistStatisticsDto {
|
|
|
+
|
|
|
+ private Integer organId;
|
|
|
+
|
|
|
+ private String organName;
|
|
|
+
|
|
|
+ private Integer thisYearRegistStudentNum;
|
|
|
+
|
|
|
+ private Integer historyRegistStudentNum;
|
|
|
+
|
|
|
+ public Integer getOrganId() {
|
|
|
+ return organId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOrganId(Integer organId) {
|
|
|
+ this.organId = organId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getOrganName() {
|
|
|
+ return organName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOrganName(String organName) {
|
|
|
+ this.organName = organName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getThisYearRegistStudentNum() {
|
|
|
+ return thisYearRegistStudentNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setThisYearRegistStudentNum(Integer thisYearRegistStudentNum) {
|
|
|
+ this.thisYearRegistStudentNum = thisYearRegistStudentNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getHistoryRegistStudentNum() {
|
|
|
+ return historyRegistStudentNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setHistoryRegistStudentNum(Integer historyRegistStudentNum) {
|
|
|
+ this.historyRegistStudentNum = historyRegistStudentNum;
|
|
|
+ }
|
|
|
+}
|