📄 appointment.java
字号:
package com.sean.pet.hibernate.po;
import java.util.Date;
/**
* Appointment entity.
*
* @author MyEclipse Persistence Tools
*/
public class Appointment implements java.io.Serializable {
// Fields
private String id;
private Pet pet;
private Date time;
// Constructors
/** default constructor */
public Appointment() {
}
/** full constructor */
public Appointment(Pet pet, Date time) {
this.pet = pet;
this.time = time;
}
// Property accessors
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public Pet getPet() {
return this.pet;
}
public void setPet(Pet pet) {
this.pet = pet;
}
public Date getTime() {
return this.time;
}
public void setTime(Date time) {
this.time = time;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -