about.java
来自「彩铃小项目的原代码 下载」· Java 代码 · 共 82 行
JAVA
82 行
package hibernate.iml;
import java.util.Date;
/**
* About generated by MyEclipse - Hibernate Tools
*/
public class About implements java.io.Serializable {
// Fields
private String id;
private String title;
private String detail;
private Date sysdate;
// Constructors
/** default constructor */
public About() {
}
/** minimal constructor */
public About(String title) {
this.title = title;
}
/** full constructor */
public About(String title, String detail, Date sysdate) {
this.title = title;
this.detail = detail;
this.sysdate = sysdate;
}
// Property accessors
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
public String getDetail() {
return this.detail;
}
public void setDetail(String detail) {
this.detail = detail;
}
public Date getSysdate() {
return this.sysdate;
}
public void setSysdate(Date sysdate) {
this.sysdate = sysdate;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?