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

📄 ware.java

📁 本系统为符合订单管理 精确使用了账号分层用户管理 可进行主订单 次订单的增加 删除功能 实现了全密浏览用品的功能!
💻 JAVA
字号:
package com.hz.pojo;

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

public class Ware implements java.io.Serializable {

	// Fields

	private Integer wareId;
	private Goods goods;
	private String wareName;
	private String warePlace;
	private Integer price;
	private String present;

	// Constructors

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

	/** full constructor */
	public Ware(Goods goods, String wareName, String warePlace, Integer price,
			String present) {
		this.goods = goods;
		this.wareName = wareName;
		this.warePlace = warePlace;
		this.price = price;
		this.present = present;
	}

	// Property accessors

	public Integer getWareId() {
		return this.wareId;
	}

	public void setWareId(Integer wareId) {
		this.wareId = wareId;
	}

	public Goods getGoods() {
		return this.goods;
	}

	public void setGoods(Goods goods) {
		this.goods = goods;
	}

	public String getWareName() {
		return this.wareName;
	}

	public void setWareName(String wareName) {
		this.wareName = wareName;
	}

	public String getWarePlace() {
		return this.warePlace;
	}

	public void setWarePlace(String warePlace) {
		this.warePlace = warePlace;
	}

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

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

	public String getPresent() {
		return this.present;
	}

	public void setPresent(String present) {
		this.present = present;
	}

}

⌨️ 快捷键说明

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