diff --git a/tamguo-mobile/src/main/java/com/tamguo/model/ChapterEntity.java b/tamguo-mobile/src/main/java/com/tamguo/model/ChapterEntity.java index 7b271f7..7e5ba0b 100644 --- a/tamguo-mobile/src/main/java/com/tamguo/model/ChapterEntity.java +++ b/tamguo-mobile/src/main/java/com/tamguo/model/ChapterEntity.java @@ -16,6 +16,8 @@ import java.util.List; public class ChapterEntity extends SuperEntity implements Serializable { private static final long serialVersionUID = 1L; + private String subjectId; + private String courseId; private String name; @@ -90,4 +92,12 @@ public class ChapterEntity extends SuperEntity implements Seriali this.orders = orders; } + public String getSubjectId() { + return subjectId; + } + + public void setSubjectId(String subjectId) { + this.subjectId = subjectId; + } + } \ No newline at end of file diff --git a/tamguo-modules-core/src/main/java/com/tamguo/modules/tiku/model/condition/ChapterCondition.java b/tamguo-modules-core/src/main/java/com/tamguo/modules/tiku/model/condition/ChapterCondition.java index 63b10f5..254b794 100644 --- a/tamguo-modules-core/src/main/java/com/tamguo/modules/tiku/model/condition/ChapterCondition.java +++ b/tamguo-modules-core/src/main/java/com/tamguo/modules/tiku/model/condition/ChapterCondition.java @@ -5,6 +5,8 @@ public class ChapterCondition { private String parentCode; private String id; private String name; + private String bookId; + private String bookName; public String getParentCode() { return parentCode; @@ -24,5 +26,17 @@ public class ChapterCondition { public void setName(String name) { this.name = name; } + public String getBookId() { + return bookId; + } + public void setBookId(String bookId) { + this.bookId = bookId; + } + public String getBookName() { + return bookName; + } + public void setBookName(String bookName) { + this.bookName = bookName; + } } diff --git a/tamguo-modules-core/src/main/java/com/tamguo/modules/tiku/service/impl/ChapterServiceImpl.java b/tamguo-modules-core/src/main/java/com/tamguo/modules/tiku/service/impl/ChapterServiceImpl.java index 2b15bb3..53c6b76 100644 --- a/tamguo-modules-core/src/main/java/com/tamguo/modules/tiku/service/impl/ChapterServiceImpl.java +++ b/tamguo-modules-core/src/main/java/com/tamguo/modules/tiku/service/impl/ChapterServiceImpl.java @@ -84,6 +84,15 @@ public class ChapterServiceImpl extends ServiceImpl -
-
-
- -
- -
-
-
-