📄 ordergoods.java
字号:
package entity;
/**
* OrderGoods generated by MyEclipse Persistence Tools
*/
public class OrderGoods implements java.io.Serializable {
// Fields
private Integer orderGoodId;
private Goods goods;
private Orders orders;
private Integer orderGoodCount;
private Double orderGoddTotalPrice;
// Constructors
/** default constructor */
public OrderGoods() {
}
/** minimal constructor */
public OrderGoods(Goods goods, Orders orders) {
this.goods = goods;
this.orders = orders;
}
/** full constructor */
public OrderGoods(Goods goods, Orders orders, Integer orderGoodCount,
Double orderGoddTotalPrice) {
this.goods = goods;
this.orders = orders;
this.orderGoodCount = orderGoodCount;
this.orderGoddTotalPrice = orderGoddTotalPrice;
}
// Property accessors
public Integer getOrderGoodId() {
return this.orderGoodId;
}
public void setOrderGoodId(Integer orderGoodId) {
this.orderGoodId = orderGoodId;
}
public Goods getGoods() {
return this.goods;
}
public void setGoods(Goods goods) {
this.goods = goods;
}
public Orders getOrders() {
return this.orders;
}
public void setOrders(Orders orders) {
this.orders = orders;
}
public Integer getOrderGoodCount() {
return this.orderGoodCount;
}
public void setOrderGoodCount(Integer orderGoodCount) {
this.orderGoodCount = orderGoodCount;
}
public Double getOrderGoddTotalPrice() {
return this.orderGoddTotalPrice;
}
public void setOrderGoddTotalPrice(Double orderGoddTotalPrice) {
this.orderGoddTotalPrice = orderGoddTotalPrice;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -