📄 ware.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 + -