|
@@ -1,29 +1,39 @@
|
|
-package cn.com.qmth.examcloud.core.basic.api.request;
|
|
|
|
-
|
|
|
|
-import cn.com.qmth.examcloud.commons.web.cloud.api.BaseRequest;
|
|
|
|
-
|
|
|
|
-public class GetOrgsReq extends BaseRequest {
|
|
|
|
-
|
|
|
|
- private static final long serialVersionUID = -4094995334429058987L;
|
|
|
|
-
|
|
|
|
- private Long rootOrgId;
|
|
|
|
-
|
|
|
|
- private Long start;
|
|
|
|
-
|
|
|
|
- public Long getRootOrgId() {
|
|
|
|
- return rootOrgId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setRootOrgId(Long rootOrgId) {
|
|
|
|
- this.rootOrgId = rootOrgId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Long getStart() {
|
|
|
|
- return start;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setStart(Long start) {
|
|
|
|
- this.start = start;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
-}
|
|
|
|
|
|
+package cn.com.qmth.examcloud.core.basic.api.request;
|
|
|
|
+
|
|
|
|
+import cn.com.qmth.examcloud.commons.web.cloud.api.BaseRequest;
|
|
|
|
+
|
|
|
|
+public class GetOrgsReq extends BaseRequest {
|
|
|
|
+
|
|
|
|
+ private static final long serialVersionUID = -4094995334429058987L;
|
|
|
|
+
|
|
|
|
+ private Long rootOrgId;
|
|
|
|
+
|
|
|
|
+ private Long start;
|
|
|
|
+
|
|
|
|
+ private Boolean enable;
|
|
|
|
+
|
|
|
|
+ public Long getRootOrgId() {
|
|
|
|
+ return rootOrgId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setRootOrgId(Long rootOrgId) {
|
|
|
|
+ this.rootOrgId = rootOrgId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getStart() {
|
|
|
|
+ return start;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setStart(Long start) {
|
|
|
|
+ this.start = start;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Boolean getEnable() {
|
|
|
|
+ return enable;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setEnable(Boolean enable) {
|
|
|
|
+ this.enable = enable;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+}
|