|
@@ -0,0 +1,40 @@
|
|
|
+package cn.com.qmth.examcloud.core.reports.api.request;
|
|
|
+
|
|
|
+import cn.com.qmth.examcloud.api.commons.exchange.BaseRequest;
|
|
|
+
|
|
|
+public class AddOrUpdateExamStudentCountReq extends BaseRequest {
|
|
|
+
|
|
|
+
|
|
|
+ *
|
|
|
+ */
|
|
|
+ private static final long serialVersionUID = 1626084735713078775L;
|
|
|
+ private Long rootOrgId;
|
|
|
+ private Long orgId;
|
|
|
+ private Long examId;
|
|
|
+ private Integer onlineCount;
|
|
|
+ public Long getRootOrgId() {
|
|
|
+ return rootOrgId;
|
|
|
+ }
|
|
|
+ public void setRootOrgId(Long rootOrgId) {
|
|
|
+ this.rootOrgId = rootOrgId;
|
|
|
+ }
|
|
|
+ public Long getOrgId() {
|
|
|
+ return orgId;
|
|
|
+ }
|
|
|
+ public void setOrgId(Long orgId) {
|
|
|
+ this.orgId = orgId;
|
|
|
+ }
|
|
|
+ public Integer getOnlineCount() {
|
|
|
+ return onlineCount;
|
|
|
+ }
|
|
|
+ public void setOnlineCount(Integer onlineCount) {
|
|
|
+ this.onlineCount = onlineCount;
|
|
|
+ }
|
|
|
+ public Long getExamId() {
|
|
|
+ return examId;
|
|
|
+ }
|
|
|
+ public void setExamId(Long examId) {
|
|
|
+ this.examId = examId;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|