forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWordSingle.java
More file actions
40 lines (38 loc) · 847 Bytes
/
WordSingle.java
File metadata and controls
40 lines (38 loc) · 847 Bytes
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
package com.valueBean;
public class WordSingle {
private int id;
private int wordWhoId;
private String wordContent;
private String wordAuthor;
private String wordTime;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public int getWordWhoId() {
return wordWhoId;
}
public void setWordWhoId(int wordWhoId) {
this.wordWhoId = wordWhoId;
}
public String getWordContent() {
return wordContent;
}
public void setWordContent(String wordContent) {
this.wordContent = wordContent;
}
public String getWordAuthor() {
return wordAuthor;
}
public void setWordAuthor(String wordAuthor) {
this.wordAuthor = wordAuthor;
}
public String getWordTime() {
return wordTime;
}
public void setWordTime(String wordTime) {
this.wordTime = wordTime;
}
}