DChapter.java
880 字节
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package com.sinocontact.app.entity;
/**
* 顶点网章节
* @author caoMingYang
* @Description TODO
* @since 2019/5/12 19:58
**/
public class DChapter {
/**
* 章节名称
*/
private String chapterName;
/**
* 章节地址
*/
private String chapterUrl;
@Override
public String toString() {
return "DChapter{" +
"chapterName='" + chapterName + '\'' +
", chapterUrl='" + chapterUrl + '\'' +
'}';
}
public String getChapterName() {
return chapterName;
}
public void setChapterName(String chapterName) {
this.chapterName = chapterName;
}
public String getChapterUrl() {
return chapterUrl;
}
public void setChapterUrl(String chapterUrl) {
this.chapterUrl = chapterUrl;
}
}