|
@@ -47,8 +47,38 @@ public class MyRepliedVo implements Serializable {
|
|
|
@ApiModelProperty(value = "评分")
|
|
|
private String score;
|
|
|
|
|
|
- @ApiModelProperty(value = "学员课后评价")
|
|
|
- private String studentReplied;
|
|
|
+ @ApiModelProperty(value = "学生评价 0:未评价 1:已评价")
|
|
|
+ private Integer studentReplied;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "老师评价 0:未评价 1:已评价")
|
|
|
+ private Integer teacherReplied;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "学生评价内容")
|
|
|
+ private String studentRepliedStr;
|
|
|
+
|
|
|
+ public String getStudentRepliedStr() {
|
|
|
+ return studentRepliedStr;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStudentRepliedStr(String studentRepliedStr) {
|
|
|
+ this.studentRepliedStr = studentRepliedStr;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getStudentReplied() {
|
|
|
+ return studentReplied;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStudentReplied(Integer studentReplied) {
|
|
|
+ this.studentReplied = studentReplied;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getTeacherReplied() {
|
|
|
+ return teacherReplied;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTeacherReplied(Integer teacherReplied) {
|
|
|
+ this.teacherReplied = teacherReplied;
|
|
|
+ }
|
|
|
|
|
|
public String getRealName() {
|
|
|
return realName;
|
|
@@ -145,12 +175,4 @@ public class MyRepliedVo implements Serializable {
|
|
|
public void setScore(String score) {
|
|
|
this.score = score;
|
|
|
}
|
|
|
-
|
|
|
- public String getStudentReplied() {
|
|
|
- return studentReplied;
|
|
|
- }
|
|
|
-
|
|
|
- public void setStudentReplied(String studentReplied) {
|
|
|
- this.studentReplied = studentReplied;
|
|
|
- }
|
|
|
}
|