parent
c761cea942
commit
d48bffbfae
4 changed files with 80 additions and 1 deletions
@ -0,0 +1,44 @@ |
|||||||
|
package com.yipin.liuwanr.entity; |
||||||
|
|
||||||
|
/** |
||||||
|
* 课程进度 |
||||||
|
*/ |
||||||
|
public class CourseSchedule { |
||||||
|
|
||||||
|
private Integer scheduleId; |
||||||
|
private Integer courseId; |
||||||
|
private Integer experimentalClassId; |
||||||
|
private Integer projectId; |
||||||
|
|
||||||
|
public Integer getScheduleId() { |
||||||
|
return scheduleId; |
||||||
|
} |
||||||
|
|
||||||
|
public void setScheduleId(Integer scheduleId) { |
||||||
|
this.scheduleId = scheduleId; |
||||||
|
} |
||||||
|
|
||||||
|
public Integer getCourseId() { |
||||||
|
return courseId; |
||||||
|
} |
||||||
|
|
||||||
|
public void setCourseId(Integer courseId) { |
||||||
|
this.courseId = courseId; |
||||||
|
} |
||||||
|
|
||||||
|
public Integer getExperimentalClassId() { |
||||||
|
return experimentalClassId; |
||||||
|
} |
||||||
|
|
||||||
|
public void setExperimentalClassId(Integer experimentalClassId) { |
||||||
|
this.experimentalClassId = experimentalClassId; |
||||||
|
} |
||||||
|
|
||||||
|
public Integer getProjectId() { |
||||||
|
return projectId; |
||||||
|
} |
||||||
|
|
||||||
|
public void setProjectId(Integer projectId) { |
||||||
|
this.projectId = projectId; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue