📄 examination.java
字号:
package com.pet.pojo;
import java.util.Date;
/**
* Examination generated by MyEclipse Persistence Tools
*/
public class Examination implements java.io.Serializable {
private static final long serialVersionUID = -3448262819513016111L;
private Integer exId;
private Pet pet;
private Employee employee;
private String examineCode;
private Date examineDate;
private String veterinarian;
private String result;
// Constructors
/** default constructor */
public Examination() {
}
/** full constructor */
public Examination(Pet pet, Employee employee, String examineCode,
Date examineDate, String veterinarian, String result) {
this.pet = pet;
this.employee = employee;
this.examineCode = examineCode;
this.examineDate = examineDate;
this.veterinarian = veterinarian;
this.result = result;
}
// Property accessors
public Integer getExId() {
return this.exId;
}
public void setExId(Integer exId) {
this.exId = exId;
}
public Pet getPet() {
return this.pet;
}
public void setPet(Pet pet) {
this.pet = pet;
}
public Employee getEmployee() {
return this.employee;
}
public void setEmployee(Employee employee) {
this.employee = employee;
}
public String getExamineCode() {
return this.examineCode;
}
public void setExamineCode(String examineCode) {
this.examineCode = examineCode;
}
public Date getExamineDate() {
return this.examineDate;
}
public void setExamineDate(Date examineDate) {
this.examineDate = examineDate;
}
public String getVeterinarian() {
return this.veterinarian;
}
public void setVeterinarian(String veterinarian) {
this.veterinarian = veterinarian;
}
public String getResult() {
return this.result;
}
public void setResult(String result) {
this.result = result;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -