|
@@ -42,6 +42,15 @@ public class StudentStatisticsQueryInfo extends QueryInfo {
|
|
|
@ApiModelProperty(value = "是否查询课耗异常",required = false)
|
|
|
private Boolean courseConsumerError;
|
|
|
|
|
|
+ @ApiModelProperty(value = "是否预警(未开始课时数+未排课课时数≤3为【是】)",required = false)
|
|
|
+ private Boolean wornFlag;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "剩余课时数(未开始课时数+未排课课时数 小于指定数量)",required = false)
|
|
|
+ private Integer subCourseMinNum;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "剩余课时数(未开始课时数+未排课课时数 大于指定数量)",required = false)
|
|
|
+ private Integer subCourseMaxNum;
|
|
|
+
|
|
|
@ApiModelProperty(value = "第一次课开始时间(年月日)",required = false)
|
|
|
private String firstCourseStartTime;
|
|
|
|
|
@@ -51,6 +60,30 @@ public class StudentStatisticsQueryInfo extends QueryInfo {
|
|
|
@ApiModelProperty(value = "分部编号列表",required = false)
|
|
|
private String organId;
|
|
|
|
|
|
+ public Boolean getWornFlag() {
|
|
|
+ return wornFlag;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWornFlag(Boolean wornFlag) {
|
|
|
+ this.wornFlag = wornFlag;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getSubCourseMinNum() {
|
|
|
+ return subCourseMinNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSubCourseMinNum(Integer subCourseMinNum) {
|
|
|
+ this.subCourseMinNum = subCourseMinNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getSubCourseMaxNum() {
|
|
|
+ return subCourseMaxNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSubCourseMaxNum(Integer subCourseMaxNum) {
|
|
|
+ this.subCourseMaxNum = subCourseMaxNum;
|
|
|
+ }
|
|
|
+
|
|
|
public String getOrganId() {
|
|
|
return organId;
|
|
|
}
|