|
@@ -53,6 +53,17 @@ public class MyRepliedVo implements Serializable {
|
|
|
@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;
|
|
|
}
|