ware.java

来自「本系统为符合订单管理 精确使用了账号分层用户管理 可进行主订单 次订单的增加 删」· Java 代码 · 共 86 行

JAVA
86
字号
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 + =
减小字号Ctrl + -
显示快捷键?