⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 examination.java

📁 perfectpets的组织为全国的宠物诊所提供了个体健康管理。为不同城市的不同诊所提供了该服务。Perfectpets注意到在该业务领域缺乏交流
💻 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 + -