|
@@ -16,6 +16,8 @@ public class EduHomeworkCardDto {
|
|
|
|
|
|
private Long homeworkId;
|
|
|
|
|
|
+ private String content;
|
|
|
+
|
|
|
private String courseName;
|
|
|
|
|
|
private Date courseStartTime;
|
|
@@ -32,6 +34,14 @@ public class EduHomeworkCardDto {
|
|
|
|
|
|
private Date createTime;
|
|
|
|
|
|
+ public String getContent() {
|
|
|
+ return content;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setContent(String content) {
|
|
|
+ this.content = content;
|
|
|
+ }
|
|
|
+
|
|
|
public Integer getSubjectId() {
|
|
|
return subjectId;
|
|
|
}
|