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

📄 druginfo.java

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

import java.sql.Timestamp;
import java.util.HashSet;
import java.util.Set;

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

public class Druginfo implements java.io.Serializable {

	// Fields

	private Integer id;
	private Classinfo classinfo;
	private String drugName;
	private Float amount;
	private Timestamp productDate;
	private String producer;
	private String remark;
	private Integer forcastNumber;
	private Set recipedetailinfos = new HashSet(0);
	private Integer price;
	// Constructors

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

	/** full constructor */
	public Druginfo(Classinfo classinfo, String drugName, Float amount,
			Timestamp productDate, String producer, String remark,
			Integer forcastNumber, Integer price , Set recipedetailinfos) {
		this.classinfo = classinfo;
		this.drugName = drugName;
		this.amount = amount;
		this.productDate = productDate;
		this.producer = producer;
		this.remark = remark;
		this.forcastNumber = forcastNumber;
		this.price=price;
		this.recipedetailinfos = recipedetailinfos;
		
	}

	// Property accessors

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

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

	public Classinfo getClassinfo() {
		return this.classinfo;
	}

	public void setClassinfo(Classinfo classinfo) {
		this.classinfo = classinfo;
	}

	public String getDrugName() {
		return this.drugName;
	}

	public void setDrugName(String drugName) {
		this.drugName = drugName;
	}

	public Float getAmount() {
		return this.amount;
	}

	public void setAmount(Float amount) {
		this.amount = amount;
	}

	public Timestamp getProductDate() {
		return this.productDate;
	}

	public void setProductDate(Timestamp productDate) {
		this.productDate = productDate;
	}

	public String getProducer() {
		return this.producer;
	}

	public void setProducer(String producer) {
		this.producer = producer;
	}

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

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

	public Integer getForcastNumber() {
		return this.forcastNumber;
	}

	public void setForcastNumber(Integer forcastNumber) {
		this.forcastNumber = forcastNumber;
	}

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

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

	public void setPrice(Integer price) {
		this.price = price;
	}

	public Integer getPrice() {
		return this.price;
	}

	
}

⌨️ 快捷键说明

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