|
@@ -48,6 +48,17 @@ public class StudentExercisesSituationQueryInfo extends QueryInfo {
|
|
|
@ApiModelProperty(value = "作业提交截至时间")
|
|
|
private String submitEndDate;
|
|
|
|
|
|
+ @ApiModelProperty(value = "服务是否异常")
|
|
|
+ private Boolean serviceIsError;
|
|
|
+
|
|
|
+ public Boolean getServiceIsError() {
|
|
|
+ return serviceIsError;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setServiceIsError(Boolean serviceIsError) {
|
|
|
+ this.serviceIsError = serviceIsError;
|
|
|
+ }
|
|
|
+
|
|
|
public String getSubmitStartDate() {
|
|
|
return submitStartDate;
|
|
|
}
|