?? reply.java
字號:
package com.xdf.news.bean;
/**
* Reply generated by MyEclipse - Hibernate Tools
*/
public class Reply implements java.io.Serializable {
// Fields
private Long replyid;
private News news;
private String name;
private String content;
// Constructors
/** default constructor */
public Reply() {
}
/** full constructor */
public Reply(News news, String name, String content) {
this.news = news;
this.name = name;
this.content = content;
}
// Property accessors
public Long getReplyid() {
return this.replyid;
}
public void setReplyid(Long replyid) {
this.replyid = replyid;
}
public News getNews() {
return this.news;
}
public void setNews(News news) {
this.news = news;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -