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