|
@@ -44,6 +44,9 @@ public class PianoClassVo extends BaseEntity {
|
|
|
@ApiModelProperty("课程状态 NOT_START未开始 ING进行中 COMPLETE已完成")
|
|
|
private String status;
|
|
|
|
|
|
+ @ApiModelProperty("群聊id")
|
|
|
+ private String imGroupId;
|
|
|
+
|
|
|
@ApiModelProperty("开始时间")
|
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
@@ -57,6 +60,14 @@ public class PianoClassVo extends BaseEntity {
|
|
|
@ApiModelProperty("学生考勤 0:异常 1:正常")
|
|
|
private Integer studentSign;
|
|
|
|
|
|
+ public String getImGroupId() {
|
|
|
+ return imGroupId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setImGroupId(String imGroupId) {
|
|
|
+ this.imGroupId = imGroupId;
|
|
|
+ }
|
|
|
+
|
|
|
public Long getCourseId() {
|
|
|
return courseId;
|
|
|
}
|