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

📄 pettreatment.java

📁 用Struts+hibernate写的宠物医院
💻 JAVA
字号:
package com.sean.pet.hibernate.po;

/**
 * Pettreatment entity.
 * 
 * @author MyEclipse Persistence Tools
 */

public class Pettreatment implements java.io.Serializable {

	// Fields

	private PettreatmentId id;
	private Examination examination;
	private Treatment treatment;

	// Constructors

	/** default constructor */
	public Pettreatment() {
	}

	/** minimal constructor */
	public Pettreatment(PettreatmentId id) {
		this.id = id;
	}

	/** full constructor */
	public Pettreatment(PettreatmentId id, Examination examination,
			Treatment treatment) {
		this.id = id;
		this.examination = examination;
		this.treatment = treatment;
	}

	// Property accessors

	public PettreatmentId getId() {
		return this.id;
	}

	public void setId(PettreatmentId id) {
		this.id = id;
	}

	public Examination getExamination() {
		return this.examination;
	}

	public void setExamination(Examination examination) {
		this.examination = examination;
	}

	public Treatment getTreatment() {
		return this.treatment;
	}

	public void setTreatment(Treatment treatment) {
		this.treatment = treatment;
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -