📄 project.java
字号:
package com.starit.model;
import java.util.Date;
/**
* Porject generated by MyEclipse - Hibernate Tools
*/
public class Project implements java.io.Serializable {
// Fields
private Integer id;
private Account account;
private String name;
private String text;
private Date createAt;
private Date updateAt;
// Constructors
/** default constructor */
public Project() {
}
/** minimal constructor */
public Project(Date createAt) {
this.createAt = createAt;
}
/** full constructor */
public Project(Account account, String name, String text, Date createAt, Date updateAt) {
this.account = account;
this.name = name;
this.text = text;
this.createAt = createAt;
this.updateAt = updateAt;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public Account getAccount() {
return this.account;
}
public void setAccount(Account account) {
this.account = account;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getText() {
return this.text;
}
public void setText(String text) {
this.text = text;
}
public Date getCreateAt() {
return this.createAt;
}
public void setCreateAt(Date createAt) {
this.createAt = createAt;
}
public Date getUpdateAt() {
return this.updateAt;
}
public void setUpdateAt(Date updateAt) {
this.updateAt = updateAt;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -