|
@@ -16,40 +16,54 @@ import java.util.Date;
|
|
public class CourseGroupPianoDetailVo extends BaseEntity {
|
|
public class CourseGroupPianoDetailVo extends BaseEntity {
|
|
@ApiModelProperty("课程id")
|
|
@ApiModelProperty("课程id")
|
|
private Long courseId;
|
|
private Long courseId;
|
|
|
|
+
|
|
@ApiModelProperty("声部名称")
|
|
@ApiModelProperty("声部名称")
|
|
private String subjectName;
|
|
private String subjectName;
|
|
|
|
+
|
|
@ApiModelProperty("老师id")
|
|
@ApiModelProperty("老师id")
|
|
private Long teacherId;
|
|
private Long teacherId;
|
|
|
|
+
|
|
@ApiModelProperty("老师姓名")
|
|
@ApiModelProperty("老师姓名")
|
|
private String teacherName;
|
|
private String teacherName;
|
|
|
|
+
|
|
@ApiModelProperty("老师真实姓名")
|
|
@ApiModelProperty("老师真实姓名")
|
|
private String teacherRealName;
|
|
private String teacherRealName;
|
|
- @ApiModelProperty("学生id")
|
|
|
|
- private Long studentId;
|
|
|
|
- @ApiModelProperty("学生姓名")
|
|
|
|
- private String studentName;
|
|
|
|
- @ApiModelProperty("学生真实姓名")
|
|
|
|
- private String studentRealName;
|
|
|
|
|
|
+
|
|
@ApiModelProperty("课程状态 NOT_START未开始 ING进行中 COMPLETE已完成 CANCEL已取消")
|
|
@ApiModelProperty("课程状态 NOT_START未开始 ING进行中 COMPLETE已完成 CANCEL已取消")
|
|
private String status;
|
|
private String status;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty("学员人数")
|
|
|
|
+ private Integer studentCount;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty("扣减时长")
|
|
|
|
+ private Integer courseTime;
|
|
|
|
+
|
|
@ApiModelProperty("开始时间")
|
|
@ApiModelProperty("开始时间")
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
private Date startTime;
|
|
private Date startTime;
|
|
|
|
+
|
|
@ApiModelProperty("结束时间")
|
|
@ApiModelProperty("结束时间")
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
private Date endTime;
|
|
private Date endTime;
|
|
|
|
+
|
|
@ApiModelProperty("老师签到状态 0:异常 1:正常")
|
|
@ApiModelProperty("老师签到状态 0:异常 1:正常")
|
|
private Integer teacherInSign;
|
|
private Integer teacherInSign;
|
|
|
|
+
|
|
@ApiModelProperty("老师签退状态 0:异常 1:正常")
|
|
@ApiModelProperty("老师签退状态 0:异常 1:正常")
|
|
private Integer teacherOutSign;
|
|
private Integer teacherOutSign;
|
|
- @ApiModelProperty("学生签到状态 0:异常 1:正常")
|
|
|
|
- private Integer studentInSign;
|
|
|
|
- @ApiModelProperty("学生签退状态 0:异常 1:正常")
|
|
|
|
- private Integer studentOutSign;
|
|
|
|
- @ApiModelProperty("NOT_START未上课、WAIT待结算、COMPLETE已结算、CANCEL已取消")
|
|
|
|
- private String salaryStatus;
|
|
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty("学生状态 0:异常 1:正常")
|
|
|
|
+ private Integer studentSign;
|
|
|
|
+
|
|
|
|
+ public Integer getStudentSign() {
|
|
|
|
+ return studentSign;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setStudentSign(Integer studentSign) {
|
|
|
|
+ this.studentSign = studentSign;
|
|
|
|
+ }
|
|
|
|
|
|
public Long getCourseId() {
|
|
public Long getCourseId() {
|
|
return courseId;
|
|
return courseId;
|
|
@@ -91,36 +105,28 @@ public class CourseGroupPianoDetailVo extends BaseEntity {
|
|
this.teacherRealName = teacherRealName;
|
|
this.teacherRealName = teacherRealName;
|
|
}
|
|
}
|
|
|
|
|
|
- public Long getStudentId() {
|
|
|
|
- return studentId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setStudentId(Long studentId) {
|
|
|
|
- this.studentId = studentId;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getStudentName() {
|
|
|
|
- return studentName;
|
|
|
|
|
|
+ public String getStatus() {
|
|
|
|
+ return status;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setStudentName(String studentName) {
|
|
|
|
- this.studentName = studentName;
|
|
|
|
|
|
+ public void setStatus(String status) {
|
|
|
|
+ this.status = status;
|
|
}
|
|
}
|
|
|
|
|
|
- public String getStudentRealName() {
|
|
|
|
- return studentRealName;
|
|
|
|
|
|
+ public Integer getStudentCount() {
|
|
|
|
+ return studentCount;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setStudentRealName(String studentRealName) {
|
|
|
|
- this.studentRealName = studentRealName;
|
|
|
|
|
|
+ public void setStudentCount(Integer studentCount) {
|
|
|
|
+ this.studentCount = studentCount;
|
|
}
|
|
}
|
|
|
|
|
|
- public String getStatus() {
|
|
|
|
- return status;
|
|
|
|
|
|
+ public Integer getCourseTime() {
|
|
|
|
+ return courseTime;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setStatus(String status) {
|
|
|
|
- this.status = status;
|
|
|
|
|
|
+ public void setCourseTime(Integer courseTime) {
|
|
|
|
+ this.courseTime = courseTime;
|
|
}
|
|
}
|
|
|
|
|
|
public Date getStartTime() {
|
|
public Date getStartTime() {
|
|
@@ -154,28 +160,4 @@ public class CourseGroupPianoDetailVo extends BaseEntity {
|
|
public void setTeacherOutSign(Integer teacherOutSign) {
|
|
public void setTeacherOutSign(Integer teacherOutSign) {
|
|
this.teacherOutSign = teacherOutSign;
|
|
this.teacherOutSign = teacherOutSign;
|
|
}
|
|
}
|
|
-
|
|
|
|
- public Integer getStudentInSign() {
|
|
|
|
- return studentInSign;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setStudentInSign(Integer studentInSign) {
|
|
|
|
- this.studentInSign = studentInSign;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getStudentOutSign() {
|
|
|
|
- return studentOutSign;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setStudentOutSign(Integer studentOutSign) {
|
|
|
|
- this.studentOutSign = studentOutSign;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getSalaryStatus() {
|
|
|
|
- return salaryStatus;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setSalaryStatus(String salaryStatus) {
|
|
|
|
- this.salaryStatus = salaryStatus;
|
|
|
|
- }
|
|
|
|
}
|
|
}
|