|
@@ -21,11 +21,9 @@ public class StudentQueryInfo extends QueryInfo {
|
|
|
|
|
|
private List<String> organIdList;
|
|
|
|
|
|
- @ApiModelProperty("排序字段:cloudStudyUseTime(总时长),cloudStudyRunningDays(连续天数)")
|
|
|
- private String orderField = "cloudStudyUseTime";
|
|
|
+ private String cloudStudyUseTime;
|
|
|
|
|
|
- @ApiModelProperty("排序方式:ASC(正序),DESC(倒序)")
|
|
|
- private String orderType = "ASC";
|
|
|
+ private String cloudStudyRunningDays;
|
|
|
|
|
|
public String getGroupType() {
|
|
|
return groupType;
|
|
@@ -67,19 +65,19 @@ public class StudentQueryInfo extends QueryInfo {
|
|
|
this.organIdList = organIdList;
|
|
|
}
|
|
|
|
|
|
- public String getOrderField() {
|
|
|
- return orderField;
|
|
|
+ public String getCloudStudyUseTime() {
|
|
|
+ return cloudStudyUseTime;
|
|
|
}
|
|
|
|
|
|
- public void setOrderField(String orderField) {
|
|
|
- this.orderField = orderField;
|
|
|
+ public void setCloudStudyUseTime(String cloudStudyUseTime) {
|
|
|
+ this.cloudStudyUseTime = cloudStudyUseTime;
|
|
|
}
|
|
|
|
|
|
- public String getOrderType() {
|
|
|
- return orderType;
|
|
|
+ public String getCloudStudyRunningDays() {
|
|
|
+ return cloudStudyRunningDays;
|
|
|
}
|
|
|
|
|
|
- public void setOrderType(String orderType) {
|
|
|
- this.orderType = orderType;
|
|
|
+ public void setCloudStudyRunningDays(String cloudStudyRunningDays) {
|
|
|
+ this.cloudStudyRunningDays = cloudStudyRunningDays;
|
|
|
}
|
|
|
}
|