|
@@ -60,6 +60,11 @@ public class SaveExamReq extends BaseRequest {
|
|
*/
|
|
*/
|
|
private Long examTimes;
|
|
private Long examTimes;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 是否禁止考试
|
|
|
|
+ */
|
|
|
|
+ private Boolean examLimit;
|
|
|
|
+
|
|
private Map<String, String> properties;
|
|
private Map<String, String> properties;
|
|
|
|
|
|
public Long getId() {
|
|
public Long getId() {
|
|
@@ -142,4 +147,12 @@ public class SaveExamReq extends BaseRequest {
|
|
this.properties = properties;
|
|
this.properties = properties;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public Boolean getExamLimit() {
|
|
|
|
+ return examLimit;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setExamLimit(Boolean examLimit) {
|
|
|
|
+ this.examLimit = examLimit;
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|