|
@@ -19,6 +19,9 @@ public class CourseInfo {
|
|
|
@ApiModelProperty(value = "是否缺考")
|
|
|
private Boolean absent;
|
|
|
|
|
|
+ @ApiModelProperty(value = "是否应届")
|
|
|
+ private Boolean studentCurrent;
|
|
|
+
|
|
|
@ApiModelProperty(value = "是否发布")
|
|
|
private String publishStatus;
|
|
|
|
|
@@ -54,6 +57,14 @@ public class CourseInfo {
|
|
|
this.absent = absent;
|
|
|
}
|
|
|
|
|
|
+ public Boolean getStudentCurrent() {
|
|
|
+ return studentCurrent;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStudentCurrent(Boolean studentCurrent) {
|
|
|
+ this.studentCurrent = studentCurrent;
|
|
|
+ }
|
|
|
+
|
|
|
public String getPublishStatus() {
|
|
|
return publishStatus;
|
|
|
}
|