|
@@ -1,14 +1,22 @@
|
|
|
package cn.com.qmth.examcloud.examwork.api.response;
|
|
|
|
|
|
import cn.com.qmth.examcloud.commons.web.cloud.api.BaseResponse;
|
|
|
-
|
|
|
+import cn.com.qmth.examcloud.examwork.api.bean.ExamBean;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 类注释
|
|
|
+ *
|
|
|
+ * @author WANGWEI
|
|
|
+ * @date 2018年8月14日
|
|
|
+ * @Copyright (c) 2018-? http://qmth.com.cn All Rights Reserved.
|
|
|
+ */
|
|
|
public class GetExamResp extends BaseResponse {
|
|
|
|
|
|
private static final long serialVersionUID = -1493707790478891416L;
|
|
|
|
|
|
private Long id;
|
|
|
|
|
|
- private String name;
|
|
|
+ private ExamBean examBean;
|
|
|
|
|
|
public Long getId() {
|
|
|
return id;
|
|
@@ -18,12 +26,12 @@ public class GetExamResp extends BaseResponse {
|
|
|
this.id = id;
|
|
|
}
|
|
|
|
|
|
- public String getName() {
|
|
|
- return name;
|
|
|
+ public ExamBean getExamBean() {
|
|
|
+ return examBean;
|
|
|
}
|
|
|
|
|
|
- public void setName(String name) {
|
|
|
- this.name = name;
|
|
|
+ public void setExamBean(ExamBean examBean) {
|
|
|
+ this.examBean = examBean;
|
|
|
}
|
|
|
|
|
|
}
|