|
@@ -2,6 +2,8 @@ package com.ym.mec.biz.dal.entity;
|
|
|
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
|
|
|
+import com.ym.mec.biz.dal.entity.CourseSchedule.CourseScheduleType;
|
|
|
+
|
|
|
/**
|
|
|
* 对应数据库表(music_group_payment_student_course_detail):
|
|
|
*/
|
|
@@ -20,7 +22,7 @@ public class MusicGroupPaymentStudentCourseDetail {
|
|
|
private Integer userId;
|
|
|
|
|
|
/** */
|
|
|
- private String courseType;
|
|
|
+ private CourseScheduleType courseType;
|
|
|
|
|
|
/** */
|
|
|
private Integer totalCourseMinutes;
|
|
@@ -66,11 +68,11 @@ public class MusicGroupPaymentStudentCourseDetail {
|
|
|
return this.userId;
|
|
|
}
|
|
|
|
|
|
- public void setCourseType(String courseType){
|
|
|
+ public void setCourseType(CourseScheduleType courseType){
|
|
|
this.courseType = courseType;
|
|
|
}
|
|
|
|
|
|
- public String getCourseType(){
|
|
|
+ public CourseScheduleType getCourseType(){
|
|
|
return this.courseType;
|
|
|
}
|
|
|
|