|
@@ -12,7 +12,7 @@ public class ExerciseQuestionEditDto implements Serializable {
|
|
|
|
|
|
private String exerciseBookName;
|
|
|
|
|
|
- private String courseName;
|
|
|
+ private String subject;
|
|
|
|
|
|
private String grade;
|
|
|
|
|
@@ -23,10 +23,9 @@ public class ExerciseQuestionEditDto implements Serializable {
|
|
|
@JSONField(serialize = false)
|
|
|
private int dealStatus;
|
|
|
|
|
|
- @JSONField(serialize = false)
|
|
|
- private int type;
|
|
|
+ private int bookType;
|
|
|
|
|
|
- private String bookType;
|
|
|
+ private String bookTypeName;
|
|
|
|
|
|
private Date createTime;
|
|
|
|
|
@@ -66,12 +65,12 @@ public class ExerciseQuestionEditDto implements Serializable {
|
|
|
this.exerciseBookName = exerciseBookName;
|
|
|
}
|
|
|
|
|
|
- public String getCourseName() {
|
|
|
- return courseName;
|
|
|
+ public String getSubject() {
|
|
|
+ return subject;
|
|
|
}
|
|
|
|
|
|
- public void setCourseName(String courseName) {
|
|
|
- this.courseName = courseName;
|
|
|
+ public void setSubject(String subject) {
|
|
|
+ this.subject = subject;
|
|
|
}
|
|
|
|
|
|
public String getGrade() {
|
|
@@ -98,14 +97,6 @@ public class ExerciseQuestionEditDto implements Serializable {
|
|
|
this.dealStatus = dealStatus;
|
|
|
}
|
|
|
|
|
|
- public int getType() {
|
|
|
- return type;
|
|
|
- }
|
|
|
-
|
|
|
- public void setType(int type) {
|
|
|
- this.type = type;
|
|
|
- }
|
|
|
-
|
|
|
public Date getCreateTime() {
|
|
|
return createTime;
|
|
|
}
|
|
@@ -130,14 +121,22 @@ public class ExerciseQuestionEditDto implements Serializable {
|
|
|
this.versionName = versionName;
|
|
|
}
|
|
|
|
|
|
- public String getBookType() {
|
|
|
+ public int getBookType() {
|
|
|
return bookType;
|
|
|
}
|
|
|
|
|
|
- public void setBookType(String bookType) {
|
|
|
+ public void setBookType(int bookType) {
|
|
|
this.bookType = bookType;
|
|
|
}
|
|
|
|
|
|
+ public String getBookTypeName() {
|
|
|
+ return bookTypeName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBookTypeName(String bookTypeName) {
|
|
|
+ this.bookTypeName = bookTypeName;
|
|
|
+ }
|
|
|
+
|
|
|
public String getCreateUserName() {
|
|
|
return createUserName;
|
|
|
}
|