|
@@ -1,19 +1,21 @@
|
|
package cn.com.qmth.examcloud.core.basic.api.response;
|
|
package cn.com.qmth.examcloud.core.basic.api.response;
|
|
|
|
|
|
|
|
+import java.util.List;
|
|
|
|
+
|
|
import cn.com.qmth.examcloud.commons.web.cloud.api.BaseResponse;
|
|
import cn.com.qmth.examcloud.commons.web.cloud.api.BaseResponse;
|
|
|
|
|
|
public class UnbindStudentCodeResp extends BaseResponse {
|
|
public class UnbindStudentCodeResp extends BaseResponse {
|
|
|
|
|
|
private static final long serialVersionUID = 4719566334495559584L;
|
|
private static final long serialVersionUID = 4719566334495559584L;
|
|
|
|
|
|
- private Integer affected;
|
|
|
|
|
|
+ private List<Long> studentIdList;
|
|
|
|
|
|
- public Integer getAffected() {
|
|
|
|
- return affected;
|
|
|
|
|
|
+ public List<Long> getStudentIdList() {
|
|
|
|
+ return studentIdList;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setAffected(Integer affected) {
|
|
|
|
- this.affected = affected;
|
|
|
|
|
|
+ public void setStudentIdList(List<Long> studentIdList) {
|
|
|
|
+ this.studentIdList = studentIdList;
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|