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

📄 recipeinfo.java

📁 医药管理
💻 JAVA
字号:
package com.xttc.pojo;

import java.util.HashSet;
import java.util.Set;

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

public class Recipeinfo implements java.io.Serializable {

	// Fields

	private Integer id;
	private String patientName;
	private Integer age;
	private String remark;
	private Integer sex;
	private Integer total;
	private String date;
	private Set recipedetailinfos = new HashSet(0);

	// Constructors

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

	/** full constructor */
	public Recipeinfo(String patientName, Integer age, String remark,
			Integer sex,Integer total, String date ,Set recipedetailinfos) {
		this.patientName = patientName;
		this.age = age;
		this.remark = remark;
		this.sex = sex;
		this.total=total;
		this.date=date;
		this.recipedetailinfos = recipedetailinfos;
	}

	// Property accessors

	public Integer getTotal() {
		return total;
	}

	public void setTotal(Integer total) {
		this.total = total;
	}

	public String getDate() {
		return date;
	}

	public void setDate(String date) {
		this.date = date;
	}

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

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

	public String getPatientName() {
		return this.patientName;
	}

	public void setPatientName(String patientName) {
		this.patientName = patientName;
	}

	public Integer getAge() {
		return this.age;
	}

	public void setAge(Integer age) {
		this.age = age;
	}

	public String getRemark() {
		return this.remark;
	}

	public void setRemark(String remark) {
		this.remark = remark;
	}

	public Integer getSex() {
		return this.sex;
	}

	public void setSex(Integer sex) {
		this.sex = sex;
	}

	public Set getRecipedetailinfos() {
		return this.recipedetailinfos;
	}

	public void setRecipedetailinfos(Set recipedetailinfos) {
		this.recipedetailinfos = recipedetailinfos;
	}

}

⌨️ 快捷键说明

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