📄 times.java
字号:
package task.domain;
import java.util.Date;
/**
* Times entity. @author MyEclipse Persistence Tools
*/
public class Times implements java.io.Serializable {
// Fields
private Integer timeId;
private Date date;
private String week;
private String amTime;
private String amContent;
private String pmTime;
private String pmContent;
private Integer person;
private Integer alreadyPerson;
// Constructors
/** default constructor */
public Times() {
}
/** full constructor */
public Times(Date date, String week, String amTime, String amContent, String pmTime, String pmContent, Integer person, Integer alreadyPerson) {
this.date = date;
this.week = week;
this.amTime = amTime;
this.amContent = amContent;
this.pmTime = pmTime;
this.pmContent = pmContent;
this.person = person;
this.alreadyPerson = alreadyPerson;
}
// Property accessors
public Integer getTimeId() {
return this.timeId;
}
public void setTimeId(Integer timeId) {
this.timeId = timeId;
}
public Date getDate() {
return this.date;
}
public void setDate(Date date) {
this.date = date;
}
public String getWeek() {
return this.week;
}
public void setWeek(String week) {
this.week = week;
}
public String getAmTime() {
return this.amTime;
}
public void setAmTime(String amTime) {
this.amTime = amTime;
}
public String getAmContent() {
return this.amContent;
}
public void setAmContent(String amContent) {
this.amContent = amContent;
}
public String getPmTime() {
return this.pmTime;
}
public void setPmTime(String pmTime) {
this.pmTime = pmTime;
}
public String getPmContent() {
return this.pmContent;
}
public void setPmContent(String pmContent) {
this.pmContent = pmContent;
}
public Integer getPerson() {
return this.person;
}
public void setPerson(Integer person) {
this.person = person;
}
public Integer getAlreadyPerson() {
return this.alreadyPerson;
}
public void setAlreadyPerson(Integer alreadyPerson) {
this.alreadyPerson = alreadyPerson;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -