|
@@ -1,5 +1,6 @@
|
|
|
package com.ym.mec.biz.dal.page;
|
|
|
|
|
|
+import com.ym.mec.biz.dal.enums.PracticeGroupType;
|
|
|
import com.ym.mec.common.page.QueryInfo;
|
|
|
|
|
|
/**
|
|
@@ -24,7 +25,7 @@ public class PracticeGroupQueryInfo extends QueryInfo {
|
|
|
|
|
|
private Integer hasReport;
|
|
|
|
|
|
- private String practiceGroupType;
|
|
|
+ private PracticeGroupType practiceGroupType;
|
|
|
|
|
|
private String groupStatus;
|
|
|
|
|
@@ -44,11 +45,11 @@ public class PracticeGroupQueryInfo extends QueryInfo {
|
|
|
this.studentId = studentId;
|
|
|
}
|
|
|
|
|
|
- public String getPracticeGroupType() {
|
|
|
+ public PracticeGroupType getPracticeGroupType() {
|
|
|
return practiceGroupType;
|
|
|
}
|
|
|
|
|
|
- public void setPracticeGroupType(String practiceGroupType) {
|
|
|
+ public void setPracticeGroupType(PracticeGroupType practiceGroupType) {
|
|
|
this.practiceGroupType = practiceGroupType;
|
|
|
}
|
|
|
|