|
@ -11,7 +11,7 @@ import com.ekexiu.portal.basepo.CreateTimeSupported;
|
11
|
11
|
@Table
|
12
|
12
|
public class LeaveWord implements CreateTimeSupported {
|
13
|
13
|
private String id;
|
14
|
|
private String Content;
|
|
14
|
private String content;
|
15
|
15
|
private String sender;
|
16
|
16
|
private String articleId;
|
17
|
17
|
private String createTime;
|
|
@ -26,10 +26,10 @@ public class LeaveWord implements CreateTimeSupported {
|
26
|
26
|
}
|
27
|
27
|
@Column(DE.text_de)
|
28
|
28
|
public String getContent() {
|
29
|
|
return Content;
|
|
29
|
return content;
|
30
|
30
|
}
|
31
|
31
|
public void setContent(String content) {
|
32
|
|
Content = content;
|
|
32
|
this.content = content;
|
33
|
33
|
}
|
34
|
34
|
@Column(DE.id_32)
|
35
|
35
|
public String getSender() {
|