|
@@ -1,48 +1,48 @@
|
|
|
-package cn.com.qmth.examcloud.core.basic.api.request;
|
|
|
-
|
|
|
-import cn.com.qmth.examcloud.commons.web.cloud.api.BaseRequest;
|
|
|
-
|
|
|
-public class GetStudentReq extends BaseRequest {
|
|
|
-
|
|
|
- private static final long serialVersionUID = 2135618523755240278L;
|
|
|
-
|
|
|
- /**
|
|
|
- * 顶级机构ID
|
|
|
- */
|
|
|
- private Long rootOrgId;
|
|
|
-
|
|
|
- /**
|
|
|
- * 学生code
|
|
|
- */
|
|
|
- private String studentCode;
|
|
|
-
|
|
|
- /**
|
|
|
- * 身份证号码
|
|
|
- */
|
|
|
- private String identityNumber;
|
|
|
-
|
|
|
- public Long getRootOrgId() {
|
|
|
- return rootOrgId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setRootOrgId(Long rootOrgId) {
|
|
|
- this.rootOrgId = rootOrgId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getStudentCode() {
|
|
|
- return studentCode;
|
|
|
- }
|
|
|
-
|
|
|
- public void setStudentCode(String studentCode) {
|
|
|
- this.studentCode = studentCode;
|
|
|
- }
|
|
|
-
|
|
|
- public String getIdentityNumber() {
|
|
|
- return identityNumber;
|
|
|
- }
|
|
|
-
|
|
|
- public void setIdentityNumber(String identityNumber) {
|
|
|
- this.identityNumber = identityNumber;
|
|
|
- }
|
|
|
-
|
|
|
-}
|
|
|
+package cn.com.qmth.examcloud.core.basic.api.request;
|
|
|
+
|
|
|
+import cn.com.qmth.examcloud.commons.web.cloud.api.BaseRequest;
|
|
|
+
|
|
|
+public class GetStudentReq extends BaseRequest {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 2135618523755240278L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 顶级机构ID
|
|
|
+ */
|
|
|
+ private Long rootOrgId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 学生ID
|
|
|
+ */
|
|
|
+ private Long studentId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 身份证号码
|
|
|
+ */
|
|
|
+ private String identityNumber;
|
|
|
+
|
|
|
+ public Long getRootOrgId() {
|
|
|
+ return rootOrgId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRootOrgId(Long rootOrgId) {
|
|
|
+ this.rootOrgId = rootOrgId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getStudentId() {
|
|
|
+ return studentId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStudentId(Long studentId) {
|
|
|
+ this.studentId = studentId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getIdentityNumber() {
|
|
|
+ return identityNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIdentityNumber(String identityNumber) {
|
|
|
+ this.identityNumber = identityNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|