Browse Source

1、网管课初始类型

Joburgess 5 years ago
parent
commit
78c90988bf

+ 4 - 3
mec-biz/src/main/java/com/ym/mec/biz/dal/page/PracticeGroupQueryInfo.java

@@ -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;
     }