|
@@ -1,6 +1,5 @@
|
|
|
package com.yonge.cooleshow.biz.dal.entity;
|
|
|
|
|
|
-import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
@@ -32,11 +31,11 @@ public class StudentTotal implements Serializable {
|
|
|
@TableField(value = "testing_num_")
|
|
|
private Integer testingNum;
|
|
|
@ApiModelProperty("已完成课时数 ")
|
|
|
- @TableField(value = "finsh_class_hours_")
|
|
|
- private Integer finshClassHours;
|
|
|
+ @TableField(value = "finsh_hours_")
|
|
|
+ private Integer finshHours;
|
|
|
@ApiModelProperty("剩余课时数 ")
|
|
|
- @TableField(value = "unfinsh_class_hours_")
|
|
|
- private Integer unfinshClassHours;
|
|
|
+ @TableField(value = "unfinsh_hours_")
|
|
|
+ private Integer unfinshHours;
|
|
|
@ApiModelProperty("关注老师数 ")
|
|
|
@TableField(value = "star_teacher_num_")
|
|
|
private Integer starTeacherNum;
|
|
@@ -45,68 +44,67 @@ public class StudentTotal implements Serializable {
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
|
|
|
private Date updateTime;
|
|
|
|
|
|
- public Long getUserId() {
|
|
|
+ public Long getUserId() {
|
|
|
return userId;
|
|
|
}
|
|
|
|
|
|
public void setUserId(Long userId) {
|
|
|
this.userId = userId;
|
|
|
}
|
|
|
-
|
|
|
- public Integer getExerciseDays() {
|
|
|
+
|
|
|
+ public Integer getExerciseDays() {
|
|
|
return exerciseDays;
|
|
|
}
|
|
|
|
|
|
public void setExerciseDays(Integer exerciseDays) {
|
|
|
this.exerciseDays = exerciseDays;
|
|
|
}
|
|
|
-
|
|
|
- public Double getExerciseHours() {
|
|
|
+
|
|
|
+ public Double getExerciseHours() {
|
|
|
return exerciseHours;
|
|
|
}
|
|
|
|
|
|
public void setExerciseHours(Double exerciseHours) {
|
|
|
this.exerciseHours = exerciseHours;
|
|
|
}
|
|
|
-
|
|
|
- public Integer getTestingNum() {
|
|
|
+
|
|
|
+ public Integer getTestingNum() {
|
|
|
return testingNum;
|
|
|
}
|
|
|
|
|
|
public void setTestingNum(Integer testingNum) {
|
|
|
this.testingNum = testingNum;
|
|
|
}
|
|
|
-
|
|
|
- public Integer getFinshClassHours() {
|
|
|
- return finshClassHours;
|
|
|
+
|
|
|
+ public Integer getFinshHours() {
|
|
|
+ return finshHours;
|
|
|
}
|
|
|
|
|
|
- public void setFinshClassHours(Integer finshClassHours) {
|
|
|
- this.finshClassHours = finshClassHours;
|
|
|
+ public void setFinshHours(Integer finshHours) {
|
|
|
+ this.finshHours = finshHours;
|
|
|
}
|
|
|
-
|
|
|
- public Integer getUnfinshClassHours() {
|
|
|
- return unfinshClassHours;
|
|
|
+
|
|
|
+ public Integer getUnfinshHours() {
|
|
|
+ return unfinshHours;
|
|
|
}
|
|
|
|
|
|
- public void setUnfinshClassHours(Integer unfinshClassHours) {
|
|
|
- this.unfinshClassHours = unfinshClassHours;
|
|
|
+ public void setUnfinshHours(Integer unfinshHours) {
|
|
|
+ this.unfinshHours = unfinshHours;
|
|
|
}
|
|
|
-
|
|
|
- public Integer getStarTeacherNum() {
|
|
|
+
|
|
|
+ public Integer getStarTeacherNum() {
|
|
|
return starTeacherNum;
|
|
|
}
|
|
|
|
|
|
public void setStarTeacherNum(Integer starTeacherNum) {
|
|
|
this.starTeacherNum = starTeacherNum;
|
|
|
}
|
|
|
-
|
|
|
- public Date getUpdateTime() {
|
|
|
+
|
|
|
+ public Date getUpdateTime() {
|
|
|
return updateTime;
|
|
|
}
|
|
|
|
|
|
public void setUpdateTime(Date updateTime) {
|
|
|
this.updateTime = updateTime;
|
|
|
}
|
|
|
-
|
|
|
}
|