|
@@ -1,11 +1,10 @@
|
|
|
package com.ym.mec.biz.dal.entity;
|
|
|
|
|
|
-import java.util.Date;
|
|
|
-
|
|
|
-import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
-
|
|
|
import com.ym.mec.biz.dal.enums.GroupStatusEnum;
|
|
|
import com.ym.mec.biz.dal.enums.PracticeGroupType;
|
|
|
+import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
+
|
|
|
+import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* 对应数据库表(practice_group):
|
|
@@ -40,6 +39,8 @@ public class PracticeGroup {
|
|
|
|
|
|
/** */
|
|
|
private java.util.Date coursesStartDate;
|
|
|
+
|
|
|
+ private String coursesStartDates;
|
|
|
|
|
|
/** */
|
|
|
private java.util.Date coursesExpireDate;
|
|
@@ -65,6 +66,14 @@ public class PracticeGroup {
|
|
|
|
|
|
private Integer educationalTeacherId;
|
|
|
|
|
|
+ public String getCoursesStartDates() {
|
|
|
+ return coursesStartDates;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCoursesStartDates(String coursesStartDates) {
|
|
|
+ this.coursesStartDates = coursesStartDates;
|
|
|
+ }
|
|
|
+
|
|
|
public Integer getEducationalTeacherId() {
|
|
|
return educationalTeacherId;
|
|
|
}
|