|
@@ -13,6 +13,23 @@ import cn.com.qmth.examcloud.commons.web.cloud.api.BaseResponse;
|
|
|
* @author: fengdesheng
|
|
|
* @since: 2018/8/15
|
|
|
*/
|
|
|
-public class ExamStudentSyncPartDataResp extends BaseResponse {
|
|
|
+public class ExamStudentSyncPartDataResp<T> extends BaseResponse {
|
|
|
+ private T data;
|
|
|
+
|
|
|
+ public ExamStudentSyncPartDataResp(T data) {
|
|
|
+ this.data = data;
|
|
|
+ }
|
|
|
+
|
|
|
+ public ExamStudentSyncPartDataResp() {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ public T getData() {
|
|
|
+ return data;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setData(T data) {
|
|
|
+ this.data = data;
|
|
|
+ }
|
|
|
|
|
|
}
|