|
@@ -54,6 +54,12 @@ public class CourseGroupPianoDetailVo extends BaseEntity {
|
|
|
@ApiModelProperty("老师签退状态 0:异常 1:正常")
|
|
|
private Integer teacherOutSign;
|
|
|
|
|
|
+ @ApiModelProperty("学生签到状态 0:异常 1:正常")
|
|
|
+ private Integer studentInSign;
|
|
|
+
|
|
|
+ @ApiModelProperty("学生签退状态 0:异常 1:正常")
|
|
|
+ private Integer studentOutSign;
|
|
|
+
|
|
|
@ApiModelProperty("学生状态 0:异常 1:正常")
|
|
|
private Integer studentSign;
|
|
|
|
|
@@ -67,6 +73,22 @@ public class CourseGroupPianoDetailVo extends BaseEntity {
|
|
|
@ApiModelProperty("学生真实姓名")
|
|
|
private String studentRealName;
|
|
|
|
|
|
+ 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 Long getStudentId() {
|
|
|
return studentId;
|
|
|
}
|