ordergoods.java
来自「主要实现管理客户以及客户信息和其公司的服务管理」· Java 代码 · 共 84 行
JAVA
84 行
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 + =
减小字号Ctrl + -
显示快捷键?