|
@@ -1,9 +1,38 @@
|
|
|
package cn.com.qmth.examcloud.examwork.api.response;
|
|
|
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
import cn.com.qmth.examcloud.commons.web.cloud.api.BaseResponse;
|
|
|
|
|
|
+/**
|
|
|
+ * 类注释
|
|
|
+ *
|
|
|
+ * @author WANGWEI
|
|
|
+ * @date 2018年11月27日
|
|
|
+ * @Copyright (c) 2018-? http://qmth.com.cn All Rights Reserved.
|
|
|
+ */
|
|
|
public class GetExamOrgListResp extends BaseResponse {
|
|
|
|
|
|
private static final long serialVersionUID = 3231843294954889649L;
|
|
|
|
|
|
+ private long next;
|
|
|
+
|
|
|
+ private List<Long> orgIdList;
|
|
|
+
|
|
|
+ public long getNext() {
|
|
|
+ return next;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNext(long next) {
|
|
|
+ this.next = next;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<Long> getOrgIdList() {
|
|
|
+ return orgIdList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOrgIdList(List<Long> orgIdList) {
|
|
|
+ this.orgIdList = orgIdList;
|
|
|
+ }
|
|
|
+
|
|
|
}
|