|
@@ -14,7 +14,7 @@ import java.util.Date;
|
|
|
* Created by 2022-03-29
|
|
|
*/
|
|
|
@ApiModel(value = "TeacherCourseGroupVo", description = "课程组信息")
|
|
|
-public class TeacherCourseGroupVo implements Serializable {
|
|
|
+public class CourseGroupVo implements Serializable {
|
|
|
|
|
|
@ApiModelProperty(value = "课程组id")
|
|
|
private Long courseGroupId;
|
|
@@ -26,12 +26,11 @@ public class TeacherCourseGroupVo implements Serializable {
|
|
|
private String subjectName;
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
- @ApiModelProperty(value = "开始时间")
|
|
|
- private Date startTime;
|
|
|
+ @ApiModelProperty(value = "第一节课开始时间")
|
|
|
+ private Date courseStartTime;
|
|
|
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
- @ApiModelProperty(value = "结束时间")
|
|
|
- private Date endTime;
|
|
|
+ @ApiModelProperty(value = "单节课时长")
|
|
|
+ private Integer singleCourseMinutes;
|
|
|
|
|
|
@ApiModelProperty(value = "课程状态 NOT_START未开始 ING进行中 COMPLETE已完成 CANCEL已取消")
|
|
|
private String status;
|
|
@@ -54,6 +53,9 @@ public class TeacherCourseGroupVo implements Serializable {
|
|
|
@ApiModelProperty(value = "课程数")
|
|
|
private Integer courseNum;
|
|
|
|
|
|
+ @ApiModelProperty(value = "课程介绍")
|
|
|
+ private String courseIntroduce;
|
|
|
+
|
|
|
public Long getCourseGroupId() {
|
|
|
return courseGroupId;
|
|
|
}
|
|
@@ -78,20 +80,20 @@ public class TeacherCourseGroupVo implements Serializable {
|
|
|
this.subjectName = subjectName;
|
|
|
}
|
|
|
|
|
|
- public Date getStartTime() {
|
|
|
- return startTime;
|
|
|
+ public Date getCourseStartTime() {
|
|
|
+ return courseStartTime;
|
|
|
}
|
|
|
|
|
|
- public void setStartTime(Date startTime) {
|
|
|
- this.startTime = startTime;
|
|
|
+ public void setCourseStartTime(Date courseStartTime) {
|
|
|
+ this.courseStartTime = courseStartTime;
|
|
|
}
|
|
|
|
|
|
- public Date getEndTime() {
|
|
|
- return endTime;
|
|
|
+ public Integer getSingleCourseMinutes() {
|
|
|
+ return singleCourseMinutes;
|
|
|
}
|
|
|
|
|
|
- public void setEndTime(Date endTime) {
|
|
|
- this.endTime = endTime;
|
|
|
+ public void setSingleCourseMinutes(Integer singleCourseMinutes) {
|
|
|
+ this.singleCourseMinutes = singleCourseMinutes;
|
|
|
}
|
|
|
|
|
|
public String getStatus() {
|
|
@@ -149,4 +151,12 @@ public class TeacherCourseGroupVo implements Serializable {
|
|
|
public void setCourseNum(Integer courseNum) {
|
|
|
this.courseNum = courseNum;
|
|
|
}
|
|
|
+
|
|
|
+ public String getCourseIntroduce() {
|
|
|
+ return courseIntroduce;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCourseIntroduce(String courseIntroduce) {
|
|
|
+ this.courseIntroduce = courseIntroduce;
|
|
|
+ }
|
|
|
}
|